How would I include a properties file in Gradle?
For example in Ant, I could do the following:
In your task (jar or any other task) you can do this way to include any file into the destination folder
jar{ //jar task related code from("src/main/......(source)") { include 'xxx.properties' into('com/.....(destination)') } }