forked from pinterest/ktlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
25 lines (20 loc) · 918 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
25
VERSION_NAME=0.49.2-SNAPSHOT
GROUP=com.pinterest.ktlint
POM_DESCRIPTION=An anti-bikeshedding Kotlin linter with built-in formatter.
POM_URL=https://github.com/pinterest/ktlint
POM_SCM_URL=https://github.com/pinterest/ktlint
POM_SCM_CONNECTION=scm:git:git://github.com/pinterest/ktlint.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/pinterest/ktlint.git
POM_PACKAGING=jar
POM_LICENSE_NAME=MIT
POM_LICENSE_URL=https://opensource.org/licenses/MIT
POM_LICENSE_DIST=repo
POM_DEVELOPER_ID=pinterest
POM_DEVELOPER_NAME=Pinterest, Inc.
# Gradle properties
org.gradle.jvmargs=-Xmx4g
org.gradle.parallel=true
org.gradle.caching=true
# The release process of ktlint breaks whenever the configuration cache is enabled as not all gradle tasks fully supports this feature yet.
# As the configuration cache only slightly improves the build performance, it is kept disabled for now.
org.gradle.configuration-cache=false