Fix build on JDK without JavaFX

This commit is contained in:
Glavo 2022-01-23 19:30:21 +08:00 committed by Yuhui Huang
parent 3a1f7a13a1
commit 65d4c9c8ee
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,6 @@ plugins {
id("checkstyle")
}
apply {
from("javafx.gradle.kts")
}
group = "org.jackhuang"
version = "3.0"
@ -95,4 +91,8 @@ tasks.create("checkTranslations") {
}
}
apply {
from("javafx.gradle.kts")
}
defaultTasks("clean", "build")

View File

@ -52,7 +52,7 @@ val jfxInClasspath =
if (!jfxInClasspath && JavaVersion.current() >= JavaVersion.VERSION_11) {
val os = System.getProperty("os.name").toLowerCase().let { osName ->
when {
osName.contains("win") -> "win"
osName.contains("win") -> "windows"
osName.contains("mac") -> "osx"
osName.contains("linux") || osName.contains("unix") -> "linux"
else -> null
@ -67,7 +67,7 @@ if (!jfxInClasspath && JavaVersion.current() >= JavaVersion.VERSION_11) {
}
if (os != null && arch != null) {
val platform = jfxPlatforms.find { it.name == "$os-arch" }
val platform = jfxPlatforms.find { it.name == "$os-$arch" }
if (platform != null) {
val groupId = platform.groupId
val version = platform.version