I'm trying to exclude the manifest file from the final jar artifact using gradle.
Weirdly I haven't found anything online and my attempts at it yielded no results.
My jar block currently:
jar {
archivesBaseName = 'LRM2'
exclude("META-INF/MANIFEST.MF")
}