mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-05-30 18:40:54 +02:00
09 example with doLast - config/exec phase
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
task helloWorld {
|
||||
// Configuration phase - Gradle learns about tasks.
|
||||
// This scope is executed first
|
||||
description "Say hello :-)"
|
||||
|
||||
doLast {
|
||||
// Execution phase
|
||||
println "Greetings from Brno"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user