-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgradle.properties
63 lines (51 loc) · 2.02 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
# sytleguide
kotlin.code.style=official
# gradle
org.gradle.daemon=true
org.gradle.caching=true
org.gradle.vfs.watch=true
org.gradle.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC
# kotlin
kotlin.native.ignoreDisabledTargets=true
kotlin.mpp.applyDefaultHierarchyTemplate=false
kotlin.mpp.stability.nowarn=true
kotlin.mpp.enableCInteropCommonization=true
kotlin.incremental.js.ir=false
kotlin.incremental.js.klib=false
kotlin.incremental.multiplatform=false
kotlin.native.ignoreIncorrectDependencies=true
kotlin.native.binary.memoryModel=experimental
kotlin.native.useEmbeddableCompilerJar=true
kotlin.daemon.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError
kotlin.daemon.useFallbackStrategy=false
kotlin.js.compiler=ir
# android
android.useAndroidX=true
android.enableJetifier=false
android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=false
# compose
org.jetbrains.compose.experimental.macos.enabled=true
org.jetbrains.compose.experimental.uikit.enabled=true
org.jetbrains.compose.experimental.jscanvas.enabled=true
# dokka
# workaround for resolving platform dependencies, see https://github.com/Kotlin/dokka/issues/3153
org.jetbrains.dokka.classpath.useNativeDistributionAccessor=true
# Maven
SONATYPE_HOST=S01
SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true
GROUP=dev.programadorthi.routing
POM_NAME=Kotlin Routing
POM_DESCRIPTION=An extensible and multiplatform routing system powered by Ktor
POM_INCEPTION_YEAR=2023
POM_URL=https://github.com/programadorthi/kotlin-routing
POM_LICENSE_NAME=Apache License Version 2.0
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0
POM_LICENSE_DIST=https://www.apache.org/licenses/LICENSE-2.0
POM_SCM_URL=https://github.com/programadorthi/kotlin-routing
POM_SCM_CONNECTION=scm:git:ssh://[email protected]/programadorthi/kotlin-routing.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/programadorthi/kotlin-routing.git
POM_DEVELOPER_ID=programadorthi
POM_DEVELOPER_NAME=Thiago Santos
POM_DEVELOPER_URL=https://programadorthi.dev