Assume I have the following:
task('dbMigrate', dependsOn: liquibaseUpdate)
task('dbNukeAndPave', dependsOn: [nuke, liquibaseUpdate])
There is no dependency relation between nuke and liquibaseUpdate. In this
case, liquibaseUpdate is always running before nuke, which is not the
behavior that I want.
Is there a way to put a total order on dependencies w/o introducing
something artificial like:
task('dbMigrate', dependsOn: no2liquibaseUpdate)
task('dbNukeAndPave', dependsOn: [no1nuke, no2liquibaseUpdate])
Thanks!
--
Matt Stine
Deep South Software: Training, Consulting, Coaching
http://www.deepsouthsoftware.com
[email protected]