mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-20 06:53:02 +03:00
12 lines
No EOL
386 B
Groovy
12 lines
No EOL
386 B
Groovy
String mainClassName = "pro.gravit.launchergui.Application"
|
|
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
jar {
|
|
classifier = 'clean'
|
|
manifest.attributes("Main-Class": mainClassName,
|
|
"Can-Redefine-Classes": "true",
|
|
"Can-Retransform-Classes": "true",
|
|
"Can-Set-Native-Method-Prefix": "true",
|
|
"Multi-Release-Jar": "true")
|
|
} |