information about debugging gradle

This commit is contained in:
Juraj Michalek
2014-06-23 22:13:47 +02:00
parent fe7b073aa8
commit 50ca99832e
2 changed files with 31 additions and 0 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()
}
}