mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-01-11 14:30:40 +01:00
11 lines
229 B
Groovy
11 lines
229 B
Groovy
task helloWorld {
|
|
// Configuration phase - Gradle learns about tasks.
|
|
// This scope is executed first
|
|
description "Say hello :-)"
|
|
|
|
doLast {
|
|
// Execution phase
|
|
println "Greetings from Brno"
|
|
}
|
|
}
|