71 lines
2.8 KiB
Properties
71 lines
2.8 KiB
Properties
#
|
|
# Copyright 2019 skydoves (Jaewoong Eum)
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
# https://docs.gradle.org/current/userguide/build_environment.html#sec:configuring_jvm_memory
|
|
org.gradle.jvmargs=-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Dlint.nullness.ignore-deprecated=true
|
|
|
|
# https://docs.gradle.org/current/userguide/build_cache.html
|
|
org.gradle.caching=true
|
|
|
|
# When configured, Gradle will run in incubating parallel mode.
|
|
# This option should only be used with decoupled projects. More details, visit
|
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
|
org.gradle.parallel=true
|
|
|
|
# Configure only necessary projects, useful with multimodule projects
|
|
org.gradle.configureondemand=true
|
|
|
|
# AndroidX Migration https://developer.android.com/jetpack/androidx/migrate
|
|
android.useAndroidX=true
|
|
|
|
# Removes uneccessary default build features
|
|
android.defaults.buildfeatures.aidl=false
|
|
android.defaults.buildfeatures.buildconfig=false
|
|
android.defaults.buildfeatures.renderscript=false
|
|
android.defaults.buildfeatures.resvalues=false
|
|
android.defaults.buildfeatures.shaders=false
|
|
|
|
# Enables namespacing of each library's R class so that its R class includes only the
|
|
# resources declared in the library itself and none from the library's dependencies,
|
|
# thereby reducing the size of the R class for that library
|
|
# https://developer.android.com/studio/releases/gradle-plugin#4.1-nontransitive-r-class
|
|
android.nonTransitiveRClass=true
|
|
|
|
## Maven Central Publication ##
|
|
systemProp.org.gradle.internal.publish.checksums.insecure=true
|
|
|
|
# Increase timeout when pushing to Sonatype (otherwise we get timeouts)
|
|
systemProp.org.gradle.internal.http.socketTimeout=120000
|
|
|
|
GROUP=com.github.skydoves
|
|
|
|
POM_URL=https://github.com/skydoves/balloon/
|
|
POM_SCM_URL=https://github.com/skydoves/balloon/
|
|
POM_SCM_CONNECTION=scm:git:git://github.com/skydoves/balloon.git
|
|
POM_SCM_DEV_CONNECTION=scm:git:git://github.com/skydoves/balloon.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=skydoves
|
|
POM_DEVELOPER_NAME=Jaewoong Eum
|
|
POM_DEVELOPER_URL=https://github.com/skydoves/
|
|
POM_DEVELOPER_EMAIL=skydoves2@gmail.com
|
|
|
|
SONATYPE_HOST=DEFAULT
|
|
RELEASE_SIGNING_ENABLED=true
|
|
SONATYPE_AUTOMATIC_RELEASE=true |