Gradle Operations: Difference between revisions
Jump to navigation
Jump to search
Line 23: | Line 23: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
and will stop there waiting for the debugger to attach. The JVM will listen on 5005. | and will stop there waiting for the debugger to attach. The JVM will listen on 5005. | ||
If you need to use a Gradle daemon, the daemon JVM can also be instrumented to start in debug mode: | |||
{{Internal|Gradle_System_Properties#Attaching_a_Debugger_to_a_Gradle_Daemon|Gradle System Properties | org.gradle.jvmargs | Attaching a Debugger to a Gradle Daemon}} | |||
====IDE Configuration==== | ====IDE Configuration==== |
Revision as of 00:43, 28 March 2021
Internal
Installation
Command Line
Operations
Debug a Gradle Build
TODO: IntelliJ Gradle Support | Configuring Gradle Sources
External Gradle Process
Gradle Process Instrumentation
Use -Dorg.gradle.debug=true. Experimented with Gradle 6.8.3.
./gradlew -Dorg.gradle.debug=true --no-daemon <task-to-debug>
Even if --no-daemon was specified, Gradle will issue a message similar to:
To honour the JVM settings for this build a single-use Daemon process will be forked. See https://docs.gradle.org/6.8.3/userguide/gradle_daemon.html#sec:disabling_the_daemon.
> Starting Daemon
and will stop there waiting for the debugger to attach. The JVM will listen on 5005.
If you need to use a Gradle daemon, the daemon JVM can also be instrumented to start in debug mode:
IDE Configuration
- Get sources from GitHub. "Subproject" sources are available in subprojects/bootstrap/src/main/java, subprojects/launcher/src/main/java, etc.
- Script that collects sources and builds a consolidated source JAR file is available here:
- Attach them to External Libraries → gradle-api-6.2.2.jar → Right click → Open Library Settings → Right click → Edit → +
No Gradle Daemon is Used
Gradle runs in IntelliJ
Edit configurations → + → Gradle