mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-01-14 15:53:41 +01:00
17 lines
247 B
Groovy
17 lines
247 B
Groovy
class Brno {
|
|
def stopMe() {
|
|
def message = "Good place for break point."
|
|
println message
|
|
}
|
|
}
|
|
|
|
task hello {
|
|
doLast {
|
|
println "You can't stop me here!"
|
|
def city = new Brno()
|
|
city.stopMe()
|
|
}
|
|
}
|
|
|
|
|