You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2007/02/02 02:03:36 UTC

svn commit: r502429 - /maven/pom/trunk/maven/pom.xml

Author: jvanzyl
Date: Thu Feb  1 17:03:35 2007
New Revision: 502429

URL: http://svn.apache.org/viewvc?view=rev&rev=502429
Log:
o the configuration for the release plugin can't be in the release profile itself ... duh.

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=502429&r1=502428&r2=502429
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Thu Feb  1 17:03:35 2007
@@ -291,9 +291,15 @@
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>        
           <artifactId>maven-release-plugin</artifactId>
+          <version>2.0-beta-4</version>          
           <configuration>
+            <!-- This element will be overriden by children -->
             <tagBase>https://svn.apache.org/repos/asf/maven/pom/tags</tagBase>
+            <useReleaseProfile>false</useReleaseProfile>
+            <goals>deploy site-deploy</goals>
+            <arguments>-Prelease</arguments>
           </configuration>
         </plugin>
       </plugins>
@@ -445,16 +451,6 @@
                 </goals>
               </execution>
             </executions>
-          </plugin>          
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-release-plugin</artifactId>
-            <version>2.0-beta-4</version>
-            <configuration>
-              <useReleaseProfile>false</useReleaseProfile>
-              <goals>deploy site-deploy</goals>
-              <arguments>-Prelease</arguments>
-            </configuration>
           </plugin>          
         </plugins>
       </build>