Skip to content

Commit a0b0528

Browse files
nakamura-toclaude
andcommitted
Enable Gradle build caching and parallel test execution
- Add gradle.properties with build caching enabled - Configure JUnit 5 parallel test execution - Set JVM max memory to 2048M for better performance 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 41775ce commit a0b0528

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ spotless {
5656
tasks {
5757
test {
5858
useJUnitPlatform()
59+
systemProperty("junit.jupiter.execution.parallel.enabled", "true")
60+
systemProperty("junit.jupiter.execution.parallel.mode.default", "same_thread")
61+
systemProperty("junit.jupiter.execution.parallel.mode.classes.default", "concurrent")
5962
}
6063

6164
compileJava {

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
org.gradle.caching=true
2+
org.gradle.jvmargs=-Xmx2048M

0 commit comments

Comments
 (0)