-
Notifications
You must be signed in to change notification settings - Fork 844
Expand file tree
/
Copy pathgradle.properties
More file actions
30 lines (27 loc) · 990 Bytes
/
gradle.properties
File metadata and controls
30 lines (27 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version=0.0.0
# Required for LdapMockMvcTests when asserting it can find a user in a different language
# Optimized for Gradle 9.0 + Kotlin 2.2 to prevent test hanging and classloading deadlocks
# CICompilerCount=2 and ProcessReaper flag prevent thread contention in containers
org.gradle.jvmargs=-Dfile.encoding=utf8 \
-XX:+StartAttachListener \
-XX:+HeapDumpOnOutOfMemoryError \
-XX:HeapDumpPath=/var/log/uaa-tests.hprof \
-Xmx1024m \
-Xms1024m \
-XX:MaxMetaspaceSize=256m \
-XX:+UseG1GC \
-XX:MaxGCPauseMillis=100 \
-XX:ParallelGCThreads=2 \
-XX:CICompilerCount=2 \
-Djdk.lang.processReaperUseDefaultStackSize=true
# Disable parallel execution to prevent classloading deadlocks with Kotlin 2.2
org.gradle.parallel=false
signing.keyId=
signing.password=
signing.secretKeyRingFile=
ossrhUsername=
ossrhPassword=
group=org.cloudfoundry.identity
archivesBaseName="uaa"
# Limit workers to 2 for memory-constrained environments (CI containers)
org.gradle.workers.max=2