mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
8 lines
155 B
Groovy
8 lines
155 B
Groovy
|
def mainClassName = "NeverDecompModule"
|
||
|
|
||
|
sourceCompatibility = '1.8'
|
||
|
targetCompatibility = '1.8'
|
||
|
|
||
|
jar {
|
||
|
manifest.attributes("Main-Class": mainClassName)
|
||
|
}
|