-
Notifications
You must be signed in to change notification settings - Fork 1
/
gradle.properties
49 lines (43 loc) · 1.43 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
stamp = false
lockDeps = true
enableSigstore = false
kotlin.version = 1.9.21
kotlinLangVersion = 1.9
micronautVersion = 4.2.1
# 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.jvmargs=-XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.dependency.verification = lenient
gradle.enterprise.testretry.enabled = true
org.gradle.configuration-cache = true
org.gradle.configuration-cache.problems = warn
# Settings: Kotlin
kotlin.experimental.tryK2 = false
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: KSP
ksp.incremental = true
ksp.incremental.intermodule = true
kapt.use.worker.api = true
kapt.incremental.apt = true
kapt.classloaders.cache.size = 8
kapt.include.compile.classpath = false
# Sonar
sonar.gradle.skipCompile = true
systemProp.sonar.gradle.skipCompile = true
systemProp.sonar.host.url=https://sonarcloud.io
# Gradle Internals
systemProp.org.gradle.internal.http.connectionTimeout = 180000
systemProp.org.gradle.internal.http.socketTimeout = 180000