-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
67 lines (58 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
## Gradle
org.gradle.jvmargs=-Xmx4g --enable-native-access=ALL-UNNAMED
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.daemon=true
org.gradle.configureondemand=true
org.gradle.configuration-cache=false
org.gradle.configuration-cache.problems=warn
org.gradle.kotlin.dsl.allWarningsAsErrors=true
# org.gradle.logging.stacktrace=all
# org.gradle.unsafe.isolated-projects=true
# org.gradle.welcome=never
# org.gradle.console=rich
# org.gradle.debug=true
# org.gradle.warning.mode=[all|fail]
## Kotlin
kotlin.code.style=official
kotlin.daemon.jvmargs=-Xmx4096m --enable-native-access=ALL-UNNAMED
kotlin.jvm.target.validation.mode=warning
kotlin.build.report.output=build_scan
kotlinx.atomicfu.enableJvmIrTransformation=true
kotlinx.atomicfu.enableNativeIrTransformation=true
kotlinx.atomicfu.enableJsIrTransformation=true
kapt.use.k2=true
## Kotlin/JS
kotlin.js.yarn=false
## KotlinNative
kotlin.incremental.native=true
kotlin.native.binary.gc=cms
kotlin.native.ignoreDisabledTargets=true
kotlin.mpp.enableCInteropCommonization=true
## Dokka
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
## KSP
ksp.useKSP2=true
ksp.version.check=false
# Compose
org.jetbrains.compose.experimental.wasm.enabled=true
org.jetbrains.compose.experimental.macos.enabled=true
kotlin.mpp.filterResourcesByExtension=true
# compose.resources.always.generate.accessors=true
# Project
semver.tagPrefix=v
semver.project.tagPrefix=v
semver.checkClean=false
semver.commitsMaxCount=100
semver.logOnlyOnRootProject=true
# semver.stage=dev|alpha|beta|rc|snapshot|final|auto
# semver.scope=auto|major|minor|patch
# semver.remote=origin
# Snapshot Repo
enableMavenSnapshot=false
# Other projects
composeBuild=true
springBoot=false
nativeBuild=false
debug=false