HMCL/minecraft/libraries/HMCLTransformerDiscoveryService/build.gradle.kts
2022-01-01 20:59:36 +08:00

20 lines
369 B
Plaintext

version = "1.0"
dependencies {
compileOnly(project.files("lib/modlauncher-4.1.0.jar"))
}
tasks.compileJava {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
tasks.jar {
manifest {
attributes(
"Created-By" to "Copyright(c) 2013-2020 huangyuhui.",
"Implementation-Version" to project.version
)
}
}