-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gradle.properties
57 lines (44 loc) · 1.64 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
org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC -Dfile.encoding=UTF-8
kotlin.code.style=official
kotlin.js.generate.executable.default=false
# android
android.useAndroidX=true
android.defaults.buildfeatures.buildconfig=false
# gradle
org.gradle.configureondemand=true
org.gradle.caching=true
org.gradle.parallel=true
# kotlin mpp
kotlin.mpp.stability.nowarn=true
kotlin.js.compiler=ir
kotlin.native.ignoreDisabledTargets=true
# kotlin incremental
kotlin.incremental.multiplatform=true
kotlin.incremental.useClasspathSnapshot=true
kotlin.incremental=true
# POM
GROUP=io.github.hoc081098
# HEY! If you change the major version here be sure to update publish-release.yaml doc target folder!
VERSION_NAME=0.5.1-SNAPSHOT
POM_INCEPTION_YEAR=2024
POM_URL=https://github.com/hoc081098/solivagant
POM_SCM_URL=https://github.com/hoc081098/solivagant
POM_SCM_CONNECTION=scm:git:git://github.com/hoc081098/solivagant
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/hoc081098/solivagant.git
POM_LICENCE_NAME=MIT License
POM_LICENCE_URL=https://opensource.org/licenses/mit-license.php
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=hoc081098
POM_DEVELOPER_NAME=Petrus Nguyen Thai Hoc
POM_DEVELOPER_URL=https://github.com/hoc081098
#MPP
kotlin.mpp.enableCInteropCommonization=true
kotlin.mpp.androidSourceSetLayoutVersion=2
# OSSRH sometimes struggles with slow deployments, so this makes Gradle
# more tolerant to those delays.
SONATYPE_CONNECT_TIMEOUT_SECONDS=300
SONATYPE_CLOSE_TIMEOUT_SECONDS=1800
# JetBrain Compose
org.jetbrains.compose.experimental.jscanvas.enabled=true
org.jetbrains.compose.experimental.macos.enabled=true
org.jetbrains.compose.experimental.wasm.enabled=true