I try to debug a gradle script. Having breakpoints...
# gradle
g
I try to debug a gradle script. Having breakpoints on the main build file work normally. But when I use
Copy code
subprojects {
    apply from: rootProject.file('gradle/publish-bintray.gradle')
}
the execution doesn’t stop on my breakpoint inside my linked gradle file. Is there a way of having breakpoints on this file?
d
Gradle groovy script ?
g
Yep