You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2016/05/05 11:36:48 UTC

svn commit: r1742413 - /maven/release/trunk/maven-release-manager/pom.xml

Author: rfscholte
Date: Thu May  5 11:36:48 2016
New Revision: 1742413

URL: http://svn.apache.org/viewvc?rev=1742413&view=rev
Log:
[MRELEASE-703] Migration from obsolete plexus-maven-plugin to plexus-containers-component-metadata
replace merge-descriptors with merge-metadata
remove plexus-maven-plugin

Modified:
    maven/release/trunk/maven-release-manager/pom.xml

Modified: maven/release/trunk/maven-release-manager/pom.xml
URL: http://svn.apache.org/viewvc/maven/release/trunk/maven-release-manager/pom.xml?rev=1742413&r1=1742412&r2=1742413&view=diff
==============================================================================
--- maven/release/trunk/maven-release-manager/pom.xml (original)
+++ maven/release/trunk/maven-release-manager/pom.xml Thu May  5 11:36:48 2016
@@ -244,27 +244,25 @@
         </configuration>
       </plugin>
       <plugin>
-          <groupId>org.codehaus.plexus</groupId>
-          <artifactId>plexus-component-metadata</artifactId>
-          <executions>
-            <execution>
-              <goals>
-                <goal>generate-metadata</goal>
-              </goals>
-            </execution>
-          </executions>
-          <configuration>
-            <extractors>
-              <extractor>class</extractor>
-            </extractors>
-          </configuration>
-        </plugin>
-      <plugin>
         <groupId>org.codehaus.plexus</groupId>
-        <artifactId>plexus-maven-plugin</artifactId>
+        <artifactId>plexus-component-metadata</artifactId>
         <executions>
           <execution>
+            <goals>
+              <goal>generate-metadata</goal>
+            </goals>
+            <configuration>
+              <extractors>
+                <extractor>class</extractor>
+              </extractors>
+            </configuration>
+          </execution>
+          <execution>
             <id>merge</id>
+            <phase>process-classes</phase>
+            <goals>
+              <goal>merge-metadata</goal>
+            </goals>
             <configuration>
               <output>${project.build.outputDirectory}/META-INF/plexus/components.xml</output>
               <descriptors>
@@ -272,10 +270,6 @@
                 <descriptor>src/main/components-fragment.xml</descriptor>
               </descriptors>
             </configuration>
-            <phase>process-classes</phase>
-            <goals>
-              <goal>merge-descriptors</goal>
-            </goals>
           </execution>
         </executions>
       </plugin>