Files
gradle-training/16-stop-build/build.gradle
2014-05-13 10:48:36 +02:00

16 lines
254 B
Groovy

task workingTask {
description 'Task that works'
doLast {
println 'Everything is ok'
}
}
task failingTask {
description 'Task that fails'
doLast {
throw new GradleException("Problem detected. Build failed")
}
}