-
Notifications
You must be signed in to change notification settings - Fork 133
/
gradle.properties
24 lines (18 loc) · 958 Bytes
/
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
GROUP=com.jakewharton.threetenabp
VERSION_NAME=1.5.0-SNAPSHOT
POM_DESCRIPTION=An adaptation of the JSR-310 backport for Android.
POM_URL=https://github.com/JakeWharton/ThreeTenABP/
POM_SCM_URL=https://github.com/JakeWharton/ThreeTenABP/
POM_SCM_CONNECTION=scm:git:git://github.com/JakeWharton/ThreeTenABP.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/JakeWharton/ThreeTenABP.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=jakewharton
POM_DEVELOPER_NAME=Jake Wharton
android.useAndroidX=true
# Without this, R8 enters ProGuard-compatibility mode which infers more keep rules from those
# which are specified. Enabling full mode treats the rules as exact which removes more and thus
# exercises the serialization code more thoroughly.
# See https://github.com/JakeWharton/ThreeTenABP/issues/122.
android.enableR8.fullMode=true