Files
cpp-examples/gradle/01-hello-task/build.gradle
2014-05-09 12:12:12 +02:00

10 lines
178 B
Groovy

task hello {
// Loaded in configuration phase
description = "Say Hello :-)"
doLast {
// Executed in execution phase
println "Hello FI MUNI!"
}
}