Skip to content

Commit 5c63cef

Browse files
authored
chore(codegen): set JVM memory size to 4gb (#3046)
1 parent dbbf59f commit 5c63cef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

codegen/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ subprojects {
9090
useJUnitPlatform()
9191
}
9292

93+
tasks.withType<JavaExec> {
94+
jvmArgs = listOf<String>("-Xms4g", "-Xmx4g")
95+
}
96+
9397
// Apply junit 5 and hamcrest test dependencies to all java projects.
9498
dependencies {
9599
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.0")

0 commit comments

Comments
 (0)