diffDatabaseToChangeLog with two hibernate config files

Hi,


Is it possible to use this task with two hibernate config files, both at the same time?


<diffDatabaseToChangeLog

            driver="${database.driver}"

            url="${database.url}"

            username="${database.username}"

            password="${database.password}"

 

            baseUrl=“hibernate:YOUR_HIBERNATE.CFG.XML”

 

            outputFile=“path/to/changelog.xml”

            classpathref=“classpath”

            >

    

In our project, the hibernate mapping files are distributed in two modules, configured in two different files (ex: hibernateXX.cfg.xml and hibernateYY.cfg.xml).


Thanks!