-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgradle.properties
More file actions
36 lines (28 loc) · 1.38 KB
/
Copy pathgradle.properties
File metadata and controls
36 lines (28 loc) · 1.38 KB
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
# Enable the build cache to save time by reusing outputs produced by other successful builds.
# https://docs.gradle.org/current/userguide/build_cache.html
org.gradle.caching=true
# Enable the configuration cache to reuse the build configuration and enable parallel task execution.
# (Note that some plugins may not yet be compatible with the configuration cache.)
# https://docs.gradle.org/current/userguide/configuration_cache.html
org.gradle.configuration-cache=true
# JVM Arguments
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=2g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Dfile.encoding=UTF-8
# Android
android.useAndroidX=true
# Publishing
# Default version - will be overridden by environment variable in CI
VERSION_NAME=0.1.0-SNAPSHOT
GROUP=io.github.takahirom.codepathtracer
SONATYPE_AUTOMATIC_RELEASE=true
POM_NAME=Code Path Tracer
POM_DESCRIPTION=Simple, powerful method tracing for JVM and Android
POM_URL=https://github.com/takahirom/code-path-tracer/
POM_SCM_URL=https://github.com/takahirom/code-path-tracer/
POM_SCM_CONNECTION=scm:git:git://github.com/takahirom/code-path-tracer.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/takahirom/code-path-tracer.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=takahirom
POM_DEVELOPER_NAME=takahirom
POM_DEVELOPER_URL=https://github.com/takahirom