You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ws...@apache.org on 2007/05/13 05:12:28 UTC

svn commit: r537543 - /maven/archiva/branches/archiva-0.9/pom.xml

Author: wsmoak
Date: Sat May 12 20:12:28 2007
New Revision: 537543

URL: http://svn.apache.org/viewvc?view=rev&rev=537543
Log:
Configure the jar plugin to add specification and implementation entries to the manifest.  Can be removed when maven-parent v6 is released.

Modified:
    maven/archiva/branches/archiva-0.9/pom.xml

Modified: maven/archiva/branches/archiva-0.9/pom.xml
URL: http://svn.apache.org/viewvc/maven/archiva/branches/archiva-0.9/pom.xml?view=diff&rev=537543&r1=537542&r2=537543
==============================================================================
--- maven/archiva/branches/archiva-0.9/pom.xml (original)
+++ maven/archiva/branches/archiva-0.9/pom.xml Sat May 12 20:12:28 2007
@@ -138,6 +138,20 @@
           <artifactId>modello-maven-plugin</artifactId>
           <version>1.0-alpha-15</version>
         </plugin>
+        <plugin>
+          <!-- TODO:  Remove when maven-parent v6 is released -->
+          <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>