-
Notifications
You must be signed in to change notification settings - Fork 2
/
gradle.properties
53 lines (41 loc) · 1.76 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
org.gradle.jvmargs=-Xmx2g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Dkotlin.daemon.jvm.options=-XX:MaxMetaspaceSize=1g
org.gradle.parallel=true
org.gradle.configureondemand=false
org.gradle.caching=true
# Enable filesystem watching
org.gradle.vfs.watch=true
# Enable experimental configuration caching
org.gradle.unsafe.configuration-cache=true
# Enable Kotlin incremental compilation
kotlin.incremental=true
# New incremental compilation for Kotlin
kotlin.incremental.useClasspathSnapshot=true
kotlin.build.report.output=file
# OSSRH sometimes struggles with slow deployments, so this makes Gradle
# more tolerant to those delays.
systemProp.org.gradle.internal.http.connectionTimeout=500000
systemProp.org.gradle.internal.http.socketTimeout=500000
# Maven publishing
GROUP=com.github.android-password-store
VERSION_NAME=0.3.0-SNAPSHOT
POM_ARTIFACT_ID=kage
POM_NAME=kage
POM_DESCRIPTION=Kotlin implementation of the age file encryption library
POM_INCEPTION_YEAR=2021
POM_URL=https://github.com/Android-Password-Store/kage
POM_SCM_URL=https://github.com/Android-Password-Store/kage
POM_SCM_CONNECTION=scm:git:https://github.com/Android-Password-Store/kage.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]:Android-Password-Store/kage
POM_LICENSE_NAME=The Apache Software License, Version 2.0
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENSE_DIST=repo
POM_DEVELOPER_ID=android-password-store
POM_DEVELOPER_NAME=The Android Password Store Authors
SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true
SONATYPE_AUTOMATIC_RELEASE=true
# OSSRH sometimes struggles with slow deployments, so this makes Gradle
# more tolerant to those delays.
SONATYPE_CONNECT_TIMEOUT_SECONDS=120
SONATYPE_CLOSE_TIMEOUT_SECONDS=1800