Gradle System Properties: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
==<tt>org.gradle.daemon</tt>== | ==<tt>org.gradle.daemon</tt>== | ||
==<tt>org.gradle.jvmargs</tt>== | ==<tt>org.gradle.jvmargs</tt>== | ||
===Attaching a Debugger to a Gradle Daemon=== | |||
A Gradle daemon can be started in debug mode, so an IDE can attach and debug a build, by specifying JVM debug flags which ensure the JVM starts in suspend mode, as follows: | |||
<syntaxhighlight lang='groovy'> | |||
org.gradle.jvmargs="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=10001" | |||
</syntaxhighlight> |
Revision as of 21:51, 10 November 2020
Internal
Overview
System properties can be provided with the -D command-line options, loaded from ~/.gradle/gradle.properties or from the project's gradle.properties. Explain precedence.
Properties
org.gradle.daemon
org.gradle.jvmargs
Attaching a Debugger to a Gradle Daemon
A Gradle daemon can be started in debug mode, so an IDE can attach and debug a build, by specifying JVM debug flags which ensure the JVM starts in suspend mode, as follows:
org.gradle.jvmargs="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=10001"