When I have the following build.gant
target(example: 'example target') {
echo(message: "name : ${it.name}, description: ${it.description}")
}
target(alwaysFails: 'never succeed') {
27
}
If I run gant alwaysFails
, the build failed.
But if I run gant alwaysFails example
, the build succeeded.
Actually I expected build failed and 'example' target did not run.
How can I make gant stop on target failure?
I believe you have to make the targets depend on each other, so
Then running:
Will run
alwaysFails
and then runexample
if it succeeds (which it never does). This way I believe you get the functionality you wanted.