-
Notifications
You must be signed in to change notification settings - Fork 81
/
gradle.properties
44 lines (32 loc) · 1.44 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
GROUP=app.cash.molecule
# HEY! If you change the major version here be sure to update release.yaml doc target folder!
VERSION_NAME=2.1.0-SNAPSHOT
SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true
POM_DESCRIPTION=Build a Flow or Observable stream using Jetpack Compose.
POM_URL=https://github.com/cashapp/molecule/
POM_SCM_URL=https://github.com/cashapp/molecule/
POM_SCM_CONNECTION=scm:git:git://github.com/cashapp/molecule.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/cashapp/molecule.git
POM_LICENCE_NAME=Apache-2.0
POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=cashapp
POM_DEVELOPER_NAME=CashApp
POM_DEVELOPER_URL=https://github.com/cashapp
org.gradle.jvmargs=-Xmx4096m
android.useAndroidX=true
android.enableJetifier=false
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false
# Signals to our own plugin that we are building within the repo.
app.cash.molecule.internal=true
kotlin.mpp.stability.nowarn=true
# This is needed for the JB Compose runtime to link on native targets. They also use this flag
# in their samples. Over time it should be removed once they figure out why it was needed.
kotlin.native.cacheKind=none
systemProp.org.gradle.internal.http.socketTimeout=120000