> The current EAR file only has the first three lines info. How can I add the > next four lines in BOLD? I am using a parent POM which is not created by me.
Google for "maven manifest.mf" leads me to: http://maven.apache.org/guides/mini/guide-manifest.html With a link to: http://maven.apache.org/shared/maven-archiver/index.html Which tells the user how to add such data via <manifestEntries>. Since this is an ear, you will add configuration to the maven-ear-plugin entry in your pom. Here is an example if your project was a jar -- just adapt it slightly: http://maven.apache.org/plugins/maven-jar-plugin/examples/manifest-customization.html Google knows about all of this. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
