When creating a jar from my Kotlin code and running it, it says \"No main manifest attribute\". When looking at the manifest.mf, it has this content:
Manifes
I got this error with Gradle and Kotlin.
I had to add in my build.gradle.kts
an explicit manifest attribute:
tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "com.example.MainKt"
}
}
From the gradle documentation, it's better to create a fatJar task to englobe all of the runtime dependencies in case you encounter java.lang.NoClassDefFoundError
errors
If any of the dependent jars has a MANIFEST.MF
file, it will override your custom one which defines the Main-Class
.
In order to address this problem you should do the following:
META-INF/MANIFEST.MF
file is the first in the listMANIFEST.MF
will be picked up by IntelliJ IDEA and displayed for the jar artifact.See the related issue for more details.
You can also use Gradle or Maven to generate the fat jar instead.