jira-importer commented on issue #268: URL: https://github.com/apache/maven-jar-plugin/issues/268#issuecomment-2956691368
**[Rainer Burgstaller](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rburgst)** commented I have the same problem using the war plugin version 2.4 (which probably uses the same code). ``` <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <archive> <manifestEntries> <Tapestry-Module-Classes> this.is.a.very.long.package.name.Module1, this.is.a.very.long.package.name.Module2, this.is.a.very.long.package.name.Module3, this.is.a.very.long.package.name.Module4, this.is.a.very.long.package.name.Module5 </Tapestry-Module-Classes> </manifestEntries> </archive> </configuration> </plugin> ``` This produces a manifest similar to this ``` Manifest-Version: 1.0 Built-By: rainer Build-Jdk: 1.7.0_10 Tapestry-Module-Classes: this.is.a.very.long.package.name.Module1, this.is.a.very.long.package.name.Module2 ... Created-By: Apache Maven 3.0.5 Archiver-Version: Plexus Archiver ``` note the empty line after `Tapestry-Module-Classes` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
