FYI, I added jar plugin config for manifest specification/implementation entries to the maven-parent pom for v6.
Does anyone think it will cause problems? I know there were issues with multi-line descriptions, but I believe the jar plugin was fixed to use 'name' instead. -- Wendy On 5/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: wsmoak Date: Sat May 12 20:10:23 2007 New Revision: 537542 URL: http://svn.apache.org/viewvc?view=rev&rev=537542 Log: Configure the jar plugin to add specification and implementation entries to the manifest. Modified: maven/pom/trunk/maven/pom.xml Modified: maven/pom/trunk/maven/pom.xml URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?view=diff&rev=537542&r1=537541&r2=537542 ============================================================================== --- maven/pom/trunk/maven/pom.xml (original) +++ maven/pom/trunk/maven/pom.xml Sat May 12 20:10:23 2007 @@ -94,10 +94,23 @@ <arguments>-Prelease</arguments> </configuration> </plugin> + <!-- END SNIPPET: release-plugin-configuration --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.1</version> + <configuration> + <archive> + <manifest> + <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + </manifest> + </archive> + </configuration> + </plugin> </plugins> </pluginManagement> </build> - <!-- END SNIPPET: release-plugin-configuration --> <profiles> <profile> <id>ci</id>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
