-
Notifications
You must be signed in to change notification settings - Fork 4
/
gradle.properties
52 lines (48 loc) · 1.49 KB
/
gradle.properties
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Settings: Build
lockDeps = false
strict = true
stamp = true
release = false
buildMode = dev
buildDocs = false
enableChecks = true
javaVersion = 11
kotlinVersion = 1.9.21
kotlinLangVersion = 1.9
micronautVersion = 4.2.1
embeddedDeps = true
pluginId = build.less
# Settings: Gradle
org.gradle.daemon = true
org.gradle.caching = true
org.gradle.parallel = true
org.gradle.parallel.intra = true
org.gradle.configureondemand = true
org.gradle.dependency.verification = lenient
gradle.enterprise.testretry.enabled = true
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=1024m -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.configuration-cache = false
org.gradle.configuration-cache.problems = warn
# Settings: Kotlin
kotlin.code.style = official
kotlin.parallel.tasks.in.project = true
kotlin.build.report.output = build_scan
kotlin.incremental = true
kotlin.caching.enabled=true
kotlin.incremental.useClasspathSnapshot = true
kotlin.mpp.stability.nowarn = true
kotlin.mpp.enableCInteropCommonization = true
kotlin.native.binary.memoryModel = experimental
kotlin.stdlib.default.dependency = false
# Settings: KApt & KSP
ksp.incremental = true
ksp.incremental.intermodule = true
kapt.use.worker.api=true
kapt.incremental.apt=true
kapt.verbose=true
kapt.classloaders.cache.size=1
kapt.include.compile.classpath=false
# Gradle Internals
systemProp.org.gradle.internal.http.connectionTimeout=180000
systemProp.org.gradle.internal.http.socketTimeout=180000
systemProp.sonar.gradle.skipCompile=true