How would I include a properties file in Gradle?
For example in Ant, I could do the following:
I would actually recommend using Gradle's default properties file. If you put the properties in gradle.properties in the same directory as the build.gradle, they will automatically be available.
gradle.properties
build.gradle
See the user guide.