mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-08-03 11:26:38 -04:00
18 lines
323 B
Groovy
18 lines
323 B
Groovy
version '1.0'
|
|
|
|
dependencies {
|
|
compileOnly project.files("lib/modlauncher-4.1.0.jar")
|
|
}
|
|
|
|
compileJava {
|
|
sourceCompatibility = 8
|
|
targetCompatibility = 8
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Created-By': 'Copyright(c) 2013-2020 huangyuhui.',
|
|
'Implementation-Version': project.version
|
|
}
|
|
}
|