Properties
Learn about Gradle properties.
We'll cover the following...
Gradle properties
The Gradle.properties file allows us to specify Gradle properties and other properties available to our build script. We could also specify build-specific values that we don’t want to keep in our versioning system (such as nexus credentials). For example, we can specify JVM arguments, and if we want to use the Gradle daemon:
org.gradle.daemon=true
org.gradle.jvmargs=-Xms128m ...