mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-28 20:11:43 +01:00
09 example with doLast - config/exec phase
This commit is contained in:
10
09-custom-task-dolast/build.gradle
Normal file
10
09-custom-task-dolast/build.gradle
Normal file
@@ -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