You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by de...@apache.org on 2007/10/09 21:41:16 UTC

svn commit: r583269 - /commons/proper/logging/trunk/pom.xml

Author: dennisl
Date: Tue Oct  9 12:41:16 2007
New Revision: 583269

URL: http://svn.apache.org/viewvc?rev=583269&view=rev
Log:
Move deploy plugin configuration to release profile.

Modified:
    commons/proper/logging/trunk/pom.xml

Modified: commons/proper/logging/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/pom.xml?rev=583269&r1=583268&r2=583269&view=diff
==============================================================================
--- commons/proper/logging/trunk/pom.xml (original)
+++ commons/proper/logging/trunk/pom.xml Tue Oct  9 12:41:16 2007
@@ -289,17 +289,6 @@
 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-deploy-plugin</artifactId>
-        <version>2.3</version>
-        <configuration>
-          <!-- Pick up this configuration from settings.xml. -->
-          <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
-          <updateReleaseInfo>true</updateReleaseInfo>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>
         <version>2.0-beta-6</version>
         <configuration>
@@ -426,6 +415,16 @@
                 <phase>package</phase>
               </execution>
             </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <version>2.3</version>
+            <configuration>
+              <!-- Pick up this configuration from settings.xml. -->
+              <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
+              <updateReleaseInfo>true</updateReleaseInfo>
+            </configuration>
           </plugin>
         </plugins>
       </build>