mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-23 17:41:34 +01:00
15 lines
305 B
Groovy
15 lines
305 B
Groovy
task helloWorld {
|
|
// Configuration phase - Gradle learns about tasks.
|
|
// This scope is executed first
|
|
description "Say hello :-)"
|
|
|
|
doFirst {
|
|
// Execution phase
|
|
println "Sunny day."
|
|
}
|
|
doLast {
|
|
// Execution phase
|
|
println "Greetings from Brno"
|
|
}
|
|
}
|