Files
2014-11-04 20:02:59 +01:00

10 lines
178 B
Groovy

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