I'm working on MJAR-38 and I don't like how Maven adds some arbitrary manifest entries. Specifically I'm referring to Specification-Title and Specification-Vendor. The patch for this issue allows the user to override these entries defined by Maven but I would actually just like to remove them so Maven does not create these entries at all. The user can still define them in their pom. Is there any reason to keep these entries (backwards compatability or some other reason)?
if ( project.getDescription() != null ) { addManifestAttribute( m, entries, "Specification-Title", project.getDescription() ); } if ( project.getOrganization() != null ) { addManifestAttribute( m, entries, "Specification-Vendor", project.getOrganization().getName() ); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]