mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-02-26 04:15:25 +01:00
16 lines
254 B
Groovy
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")
|
|
}
|
|
}
|
|
|