-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathgradle.properties
30 lines (30 loc) · 1.34 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
# Code style
kotlin.code.style=official
# Gradle
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M"
# Android
android.nonTransitiveRClass=true
android.useAndroidX=true
# Kotlin
kotlin.js.compiler=ir
kotlin.native.ignoreDisabledTargets=true
# KMP
kotlin.mpp.enableCInteropCommonization=true
kotlin.mpp.androidSourceSetLayoutVersion=2
kotlin.mpp.androidGradlePluginCompatibility.nowarn=true
org.jetbrains.compose.experimental.jscanvas.enabled=true
# Before publishing to central the library should be tested in local:
# ./gradlew publishToMavenLocal. This will generate sources for our source sets
# in the .m2 folder locally. Which can be tested by adding mavenLocal() under
# dependencyResolutionManagement in the settings.gradle.kts file.
# If mavenLocal does not work use: maven { url = uri("/Users/username/.m2/repository") }
# Fill these details for Maven publish and then run the command:
# ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
# The rest of the setup is there in build.gradle of jetlime module
# Then login to https://s01.oss.sonatype.org/ to see the publication
# Maven publication
mavenCentralUsername=enter-mc-username
mavenCentralPassword=enter-mc-password
signing.keyId=enter-signing-keyid
signing.password=enter-signing-password
signing.secretKeyRingFile=enter-signing-secret-keyring-file-path