Excluding manifest from the final jar

257 Views Asked by At

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")
}
0

There are 0 best solutions below