mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2024-11-27 06:10:08 +08:00
24 lines
694 B
Plaintext
24 lines
694 B
Plaintext
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
dependencies {
|
|
api("org.glavo:simple-png-javafx:0.3.0")
|
|
api("com.google.code.gson:gson:2.11.0")
|
|
api("com.moandjiezana.toml:toml4j:0.7.2")
|
|
api("org.tukaani:xz:1.10")
|
|
api("org.hildan.fxgson:fx-gson:5.0.0")
|
|
api("org.jenkins-ci:constant-pool-scanner:1.2")
|
|
api("com.github.steveice10:opennbt:1.5")
|
|
api("org.nanohttpd:nanohttpd:2.3.1")
|
|
api("org.apache.commons:commons-compress:1.25.0")
|
|
api("org.jsoup:jsoup:1.18.1")
|
|
compileOnlyApi("org.jetbrains:annotations:24.1.0")
|
|
|
|
if (JavaVersion.current().isJava8) {
|
|
org.gradle.internal.jvm.Jvm.current().toolsJar?.let {
|
|
compileOnly(files(it))
|
|
}
|
|
}
|
|
}
|