Skip to content

Commit 9eb7c78

Browse files
nakamura-toclaude
andcommitted
Improve Gradle build performance
Enable Gradle build caching and parallel execution, increase JVM memory allocation for better build performance across all example projects. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 636e60f commit 9eb7c78

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gradle.properties

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
kotlin.code.style=official
2-
org.gradle.jvmargs=-Xmx2560m
2+
33
ksp.incremental=true
44
ksp.useKSP2=true
55

6+
org.gradle.caching=true
7+
org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=1024m
8+
org.gradle.parallel=true
9+
610
group=org.komapper
711
version=0.0.1

0 commit comments

Comments
 (0)