Is there a tool that will allow me to set breakpoints in a build.gradle file and step through tasks in a debugger?
Note: I believe that I\'m asking a different ques
IntelliJ 2018.2 added the ability to debug Gradle scripts in a similar fashion to how you might run/debug other projects. You can see the announcement in the release notes here.
Here is a screenshot of some of the documentation from 2018.2:
It does not yet support the kotlin-dsl
(see gradle/kotlin-dsl/issues/39).
Personnaly I do this when I need to debug build scripts:
Inside you terminal do
export GRADLE_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"
Then run your build
gradle clean install
Finally put some breakpoints and launch the remote debug configuration inside your IDE on the port 5005 and you’re good to go!
There is the easier way:
just add in your command line -Dorg.gradle.debug=true --no-daemon
For example:
gradle nameOfTask -Dorg.gradle.debug=true --no-daemon
Then you should start your IDE and run remote debugging with localhost port 5005, that all.
Gradle is waiting to you, because standard option server=y
org.gradle.debug
When set to true, Gradle will run the build with remote debugging enabled, listening on port 5005. Note that this is the equivalent of adding -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005
to the JVM command line and will suspend the virtual machine until a debugger is attached.
Link to docs
export GRADLE_OPTS
does not work for me.
Try this:
1 Add remote debug config
2 add breakpoint in gradle
3 ./gradlew your task --stacktrace -Dorg.gradle.daemon=false -Dorg.gradle.debug=true
4 Attach debug in studio
Then the breakpoint stops !!
After reading various answers here the following steps will help you debug build.gradle
to being able to break and investigate variables inside any custom task. I am using Eclipse remote debugging facilities
try {throw new RuntimeException('Break');} catch (RuntimeException e) {}
gradle mytask -Dorg.gradle.debug=true --no-daemon
in the command prompt (don't have to do it in Eclipse)Run -> Add Java Exception Breakpoint
, choose RuntimeException
and click "OK"Run -> Debug Configurations -> Remote Java Application
and create new configuration that listens on localhost:5005
. Name it whatever you want. Select a project that contains build.gradle
you are debugging. Click Apply
and Debug
build.gradle
but you can pretty much guess where you are atFor example:
void halt() {
try {
throw new RuntimeException('Break');
} catch (RuntimeException e) {
print('Paused')
}
}
task iterateDeclaredDependencies {
doLast {
Object configs = configurations.all
halt();
print(configs)
}
}