You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/09/16 00:38:37 UTC

svn commit: r815532 - /commons/proper/commons-parent/trunk/pom.xml

Author: sebb
Date: Tue Sep 15 22:38:37 2009
New Revision: 815532

URL: http://svn.apache.org/viewvc?rev=815532&view=rev
Log:
Sort main list of plugin versions - missed one

Modified:
    commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=815532&r1=815531&r2=815532&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Tue Sep 15 22:38:37 2009
@@ -129,6 +129,11 @@
         <!-- org.apache.maven.plugins, alpha order by artifact id -->
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-antrun-plugin</artifactId>
+          <version>1.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-assembly-plugin</artifactId>
           <version>2.2-beta-1</version>
         </plugin>
@@ -187,11 +192,6 @@
           <artifactId>maven-surefire-plugin</artifactId>
           <version>2.4.3</version>
         </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-antrun-plugin</artifactId>
-          <version>1.1</version>
-        </plugin>
         <!-- Other plugins, alpha order by groupId and artifactId -->
         <plugin>
           <groupId>org.apache.commons</groupId>
@@ -314,6 +314,12 @@
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.5</version>
         <configuration> 
+          <archive>
+            <manifest>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+            </manifest>
+          </archive>
           <aggregate>false</aggregate>
           <source>${maven.compile.source}</source>
           <encoding>${commons.encoding}</encoding>
@@ -424,6 +430,14 @@
                 <phase>package</phase>
               </execution>
             </executions>
+            <configuration>
+              <archive>
+                <manifest>
+                  <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                  <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+                </manifest>
+              </archive>
+            </configuration>
           </plugin>
           <plugin>
             <artifactId>maven-release-plugin</artifactId>
@@ -443,6 +457,12 @@
                 <phase>package</phase>
                 <configuration>
                   <source>${maven.compile.source}</source>
+                  <archive>
+                    <manifest>
+                      <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                      <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+                    </manifest>
+                  </archive>
                 </configuration>
               </execution>
             </executions>