1# Project-wide Gradle settings. 2# IDE (e.g. IntelliJ or Android Studio) users: 3# Gradle settings configured through the IDE *will override* any settings specified in this file. 4# For more details on how to configure your build environment visit 5# http://www.gradle.org/docs/current/userguide/build_environment.html 6# Specifies the JVM arguments used for the daemon process. 7# The setting is particularly useful for tweaking memory settings. 8org.gradle.jvmargs=-Xmx4g -Xms4g -Dfile.encoding=UTF-8 9kotlin.daemon.jvmargs=-Xmx4g -Xms4g -Dfile.encoding=UTF-8 10 11# Enable caching between builds. 12org.gradle.caching=true 13 14# Enable configuration caching between builds. 15org.gradle.configuration-cache=true 16 17# Kotlin code style for this project: "official" or "obsolete": 18kotlin.code.style=official 19 20# Don't include the stdlib as a dependency by default 21kotlin.stdlib.default.dependency=false 22 23# Publish version 24# TODO(danysantiago): Find a configurable location for the publishing version. 25PUBLISH_VERSION=LOCAL-SNAPSHOT