How to add manifest files in jar files?
plugins {
id 'java'
id 'application'
}
application {
mainClassName = 'com.Main'
}
jar {
from "MANIFEST.MF"
}
sourceCompatibility = 11
when I try to execute jar, I get following :
% java -jar tmpApp.jar
no main manifest attribute, in tmpApp.jar