| Author | DaveJarvis <email> |
|---|---|
| Date | 2023-02-20 18:38:54 GMT-0800 |
| Commit | b81ca74cc9a788418237438a9e954822870b4303 |
| Parent | 97a5a11 |
| Delta | 5 lines added, 6 lines removed, 1-line decrease |
| ] | ||
| +java { | ||
| + sourceCompatibility = VERSION_19 | ||
| + targetCompatibility = VERSION_19 | ||
| +} | ||
| + | ||
| javafx { | ||
| version = '19' | ||
| final String applicationPackage = "com.${applicationName}" | ||
| final String applicationClass = "${applicationPackage}.Launcher" | ||
| - | ||
| -java { | ||
| - sourceCompatibility = VERSION_19 | ||
| - targetCompatibility = VERSION_19 | ||
| -} | ||
| compileJava { | ||
| org.gradle.parallel=true | ||
| - |