mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-01-14 15:53:41 +01:00
9 lines
142 B
Groovy
9 lines
142 B
Groovy
|
|
task helloFromPlugin() {
|
|
description "Say Hello! Code implemented in plugin."
|
|
doLast {
|
|
println "Hello from plugin!"
|
|
}
|
|
}
|
|
|