Skip to content

Commit 5684468

Browse files
mezpahlanAlejandraPedroza
authored andcommitted
Remove equals symbol from jvm arg parameters
1 parent ccb9a7f commit 5684468

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/topics/gradle/gradle-compilation-and-caches.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,15 @@ Each of the following ways to set arguments overrides the ones that came before
179179
If nothing is specified, the Kotlin daemon inherits arguments from the Gradle daemon. For example, in the `gradle.properties` file:
180180

181181
```none
182-
org.gradle.jvmargs=-Xmx1500m -Xms=500m
182+
org.gradle.jvmargs=-Xmx1500m -Xms500m
183183
```
184184

185185
#### kotlin.daemon.jvm.options system property
186186

187187
If the Gradle daemon's JVM arguments have the `kotlin.daemon.jvm.options` system property – use it in the `gradle.properties` file:
188188

189189
```none
190-
org.gradle.jvmargs=-Dkotlin.daemon.jvm.options=-Xmx1500m,Xms=500m
190+
org.gradle.jvmargs=-Dkotlin.daemon.jvm.options=-Xmx1500m,Xms500m
191191
```
192192

193193
When passing arguments, follow these rules:
@@ -209,7 +209,7 @@ When passing arguments, follow these rules:
209209
You can add the `kotlin.daemon.jvmargs` property in the `gradle.properties` file:
210210

211211
```none
212-
kotlin.daemon.jvmargs=-Xmx1500m -Xms=500m
212+
kotlin.daemon.jvmargs=-Xmx1500m -Xms500m
213213
```
214214

215215
#### kotlin extension
@@ -539,4 +539,4 @@ your `gradle.properties`.
539539

540540
Learn more about:
541541
* [Gradle basics and specifics](https://docs.gradle.org/current/userguide/userguide.html).
542-
* [Support for Gradle plugin variants](gradle-plugin-variants.md).
542+
* [Support for Gradle plugin variants](gradle-plugin-variants.md).

0 commit comments

Comments
 (0)