mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-08-03 03:16:35 -04:00
34 lines
681 B
Plaintext
34 lines
681 B
Plaintext
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
tasks.withType<JavaCompile> {
|
|
sourceCompatibility = "11"
|
|
targetCompatibility = "11"
|
|
}
|
|
|
|
tasks.compileJava {
|
|
options.compilerArgs.add("--add-exports=jdk.attach/sun.tools.attach=ALL-UNNAMED")
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.kala.compress.zip)
|
|
api(libs.kala.compress.tar)
|
|
api(libs.simple.png.javafx)
|
|
api(libs.gson)
|
|
api(libs.toml)
|
|
api(libs.xz)
|
|
api(libs.fx.gson)
|
|
api(libs.constant.pool.scanner)
|
|
api(libs.opennbt)
|
|
api(libs.nanohttpd)
|
|
api(libs.jsoup)
|
|
api(libs.chardet)
|
|
api(libs.jna)
|
|
api(libs.pci.ids)
|
|
|
|
compileOnlyApi(libs.jetbrains.annotations)
|
|
|
|
testImplementation(libs.jna.platform)
|
|
}
|