ce6a2e8487
The proper way to use gradle is to actually use the gradle.properties. It will be automatically read without using a self defined config slurper. The gradle.properties adds additional convenient options e.g. regarding the VM options and parallel calculation or daemons
24 lines
No EOL
311 B
Text
24 lines
No EOL
311 B
Text
# exclude all
|
|
/*
|
|
|
|
# include important folders
|
|
# need gradle
|
|
!gradle/
|
|
!gradlew
|
|
!gradlew.bat
|
|
!build.gradle
|
|
!gradle.properties
|
|
|
|
# include markdowns
|
|
!README.md
|
|
!License.md
|
|
|
|
# include sourcecode
|
|
!src/
|
|
|
|
# include git important files
|
|
!.gitmodules
|
|
!.gitignore
|
|
|
|
# code format to reduce noise in git commits
|
|
!codeformat/ |