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 2011/07/09 22:50:58 UTC

svn commit: r1144740 - /maven/plugins/trunk/maven-plugins/pom.xml

Author: olamy
Date: Sat Jul  9 20:50:57 2011
New Revision: 1144740

URL: http://svn.apache.org/viewvc?rev=1144740&view=rev
Log:
add snapshot repo to fix build

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

Modified: maven/plugins/trunk/maven-plugins/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?rev=1144740&r1=1144739&r2=1144740&view=diff
==============================================================================
--- maven/plugins/trunk/maven-plugins/pom.xml (original)
+++ maven/plugins/trunk/maven-plugins/pom.xml Sat Jul  9 20:50:57 2011
@@ -24,7 +24,6 @@ under the License.
     <groupId>org.apache.maven</groupId>
     <artifactId>maven-parent</artifactId>
     <version>21-SNAPSHOT</version>
-    <relativePath>../../pom/maven/pom.xml</relativePath>
   </parent>
 
   <groupId>org.apache.maven.plugins</groupId>
@@ -324,4 +323,17 @@ under the License.
       </build>   
     </profile> 	
   </profiles>
+  <!-- remove when parent released -->
+  <repositories>
+    <repository>
+      <id>apache.snapshots</id>
+      <url>https://repository.apache.org/content/groups/snapshots-group/</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
 </project>