Gradle Daemon Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 25: Line 25:
==Set Memory per Daemon==
==Set Memory per Daemon==
Add the following in the project's gradle.properties:
Add the following in the project's gradle.properties:
<syntaxhighlight lang='groovy'>
<syntaxhighlight lang='text'>
org.gradle.jvmargs=-Xmx4096M
org.gradle.jvmargs=-Xmx4096M
</syntaxhighlight>
</syntaxhighlight>

Revision as of 07:28, 29 April 2021

Internal

Overview

Status

./gradlew --status

Note that only Daemons for the current Gradle version are displayed.

Stop

./gradlew --stop

Note that the command only stops the daemons corresponding to the Gradle version that executes the command.

Logs

~/.gradle/daemon/<version>

Debug

Gradle System Properties | Attaching a Debugger to a Gradle Daemon

Configuration

Set Memory per Daemon

Add the following in the project's gradle.properties:

org.gradle.jvmargs=-Xmx4096M