Modified the run task to pass through the log configurion

settings system property.
cleanup_build_scripts
Paul Speed 9 years ago
parent f7c16e878e
commit 95d5f58d68
  1. 3
      jme3-examples/build.gradle

@ -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;
}

Loading…
Cancel
Save