Make the XDG-option available from command line

I've found no way to access it without this workaround: https://discuss.gradle.org/t/can-i-override-the-group-property-from-the-command-line/5294
It's now possible to build with `gradle jar -PXDG=true`.
This commit is contained in:
Lucki 2015-08-29 13:05:24 +02:00
parent c2839759b3
commit fad44356e6

View File

@ -13,6 +13,9 @@ mainClassName = 'itdelatrisu.opsu.Opsu'
buildDir = new File(rootProject.projectDir, "build/")
def useXDG = 'false'
if(hasProperty('XDG')) {
useXDG = XDG
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
@ -103,4 +106,4 @@ jar {
run {
dependsOn 'unpackNatives'
}
}