add sample for debugging gradle script

This commit is contained in:
Juraj Michalek
2014-06-24 20:57:24 +02:00
7 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
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()
}
}