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>