Moritz Halbritter's Personal Blog
Use Gradle? Want to add the Main-Class
attribute to your manifest in a JAR file?
Here you go:
mainClassName = 'foo.bar.Program'
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}
Use Gradle? Want to add the Main-Class
attribute to your manifest in a JAR file?
Here you go:
mainClassName = 'foo.bar.Program'
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}