From b1fdb4a773370af413b6ec57bf211418d7900b34 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 7 Mar 2015 15:41:01 +0100 Subject: [PATCH] Remove Gradle Daemon JVM args compatible with JDK 9 This commit reverts the changes made in 7bc44a9 so that developers who do not use the Gradle daemon are not adversely affected by the explicit JVM args that were introduced in that commit. Developers who wish to run the build against JDK 9 with the Gradle daemon can add the following to the gradle.properties file in their 'gradle user home' directory (e.g., ~/.gradle/gradle.properties): org.gradle.daemon=true org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m -Xmx1024m See also: https://issues.gradle.org/browse/GRADLE-3256 Issue: SPR-12549 --- gradle.properties | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index fa3072bb48..31ed731133 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1 @@ version=4.2.0.BUILD-SNAPSHOT - -# The following is necessary for running the Gradle daemon on JDK 9, since -# Gradle's DaemonParameters automatically sets the MaxPermSize JVM argument, -# which is no longer supported on JDK 9. -org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m -Xmx1024m