Hello list,
I am currently trying to create jar-files without the MANIFEST.MF
included.
How can i tell Maven2 to not include those?
I have already figured out that adding:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
helps me removing that "maven" subfolder in "META-INF", which contains
pom.properties and stuff. But now I would like to not include a
MANIFEST.MF either. Anyway, I can't figure out how to configure that.
Could anyone help me with this?!