2022-01-01 13:43:54 +08:00
|
|
|
plugins {
|
|
|
|
|
`java-library`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-02 21:25:05 +08:00
|
|
|
api("org.glavo:simple-png-javafx:0.3.0")
|
2024-10-15 19:10:02 +08:00
|
|
|
api("com.google.code.gson:gson:2.11.0")
|
2022-01-01 13:43:54 +08:00
|
|
|
api("com.moandjiezana.toml:toml4j:0.7.2")
|
2024-10-26 20:54:48 +08:00
|
|
|
api("org.tukaani:xz:1.10")
|
2023-02-24 04:31:45 +08:00
|
|
|
api("org.hildan.fxgson:fx-gson:5.0.0")
|
2022-01-01 13:43:54 +08:00
|
|
|
api("org.jenkins-ci:constant-pool-scanner:1.2")
|
2023-04-06 02:41:57 +08:00
|
|
|
api("com.github.steveice10:opennbt:1.5")
|
2022-01-01 13:43:54 +08:00
|
|
|
api("org.nanohttpd:nanohttpd:2.3.1")
|
2024-10-16 22:15:13 +08:00
|
|
|
api("org.apache.commons:commons-compress:1.25.0")
|
2025-02-19 16:28:46 +08:00
|
|
|
api("org.jsoup:jsoup:1.18.3")
|
2024-12-13 00:29:34 +08:00
|
|
|
compileOnlyApi("org.jetbrains:annotations:26.0.1")
|
2024-10-15 03:13:35 +08:00
|
|
|
|
|
|
|
|
if (JavaVersion.current().isJava8) {
|
|
|
|
|
org.gradle.internal.jvm.Jvm.current().toolsJar?.let {
|
|
|
|
|
compileOnly(files(it))
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-01 13:43:54 +08:00
|
|
|
}
|