You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2008/04/17 23:33:59 UTC

svn commit: r649288 - /maven/plugins/trunk/maven-deploy-plugin/pom.xml

Author: olamy
Date: Thu Apr 17 14:33:58 2008
New Revision: 649288

URL: http://svn.apache.org/viewvc?rev=649288&view=rev
Log:
upgrade to last parent 
configure the pom to build with a clean repo and without snapshot repos declared in the settings


Modified:
    maven/plugins/trunk/maven-deploy-plugin/pom.xml

Modified: maven/plugins/trunk/maven-deploy-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-deploy-plugin/pom.xml?rev=649288&r1=649287&r2=649288&view=diff
==============================================================================
--- maven/plugins/trunk/maven-deploy-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-deploy-plugin/pom.xml Thu Apr 17 14:33:58 2008
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <version>11-SNAPSHOT</version>
+    <version>11</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>maven-deploy-plugin</artifactId>
@@ -162,7 +162,7 @@
     </profile>
   </profiles> 
   <repositories>
-    <!-- TODO remove it when parent is released -->
+    <!-- TODO remove it when maven-plugin-plugin 2.4.2 is released -->
     <repository>
       <id>apache.snapshots</id>
       <url>http://people.apache.org/repo/m2-snapshot-repository</url>
@@ -174,4 +174,16 @@
       </snapshots>
     </repository>
   </repositories>   
+  <pluginRepositories>
+    <pluginRepository>
+      <id>apache.snapshots</id>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>    
+    </pluginRepository>
+  </pluginRepositories>
 </project>