mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-05-30 18:40:54 +02:00
add sample for debugging gradle script
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user