Modified the run task to pass through the log configurion

settings system property.
This commit is contained in:
Paul Speed 2016-03-27 06:10:50 -04:00
parent f7c16e878e
commit 95d5f58d68

View File

@ -11,6 +11,9 @@ task run(dependsOn: 'build', type:JavaExec) {
jvmArgs "-XstartOnFirstThread"
jvmArgs "-Djava.awt.headless=true"
}
systemProperty "java.util.logging.config.file", System.getProperty("java.util.logging.config.file")
if( assertions == "true" ){
enableAssertions = true;
}