-
Notifications
You must be signed in to change notification settings - Fork 728
/
gradle.properties
30 lines (26 loc) · 1.07 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
VERSION_NAME=5.1.4
GROUP=com.airbnb.android
POM_DESCRIPTION=Epoxy is a system for composing complex screens with a ReyclerView in Android.
POM_URL=https://github.com/airbnb/epoxy
POM_SCM_URL=https://github.com/airbnb/epoxy
POM_SCM_CONNECTION=scm:[email protected]:airbnb/epoxy.git
POM_SCM_DEV_CONNECTION=scm:[email protected]:airbnb/epoxy.git
POM_LICENCE_NAME=Apache-2.0
POM_LICENCE_URL=https://github.com/airbnb/epoxy/blob/master/LICENSE
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=airbnb
POM_DEVELOPER_NAME=Airbnb
POM_INCEPTION_YEAR=2016
android.useAndroidX=true
android.enableJetifier=false
android.databinding.incremental=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true
# Publishing configuration for vanniktech/gradle-maven-publish-plugin
SONATYPE_HOST=DEFAULT
SONATYPE_AUTOMATIC_RELEASE=true
# Dokka fails without a larger metaspace https://github.com/Kotlin/dokka/issues/1405
org.gradle.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=2g
kapt.includeCompileClasspath=false