You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ws...@apache.org on 2006/08/03 08:10:45 UTC

svn commit: r428254 - /myfaces/core/branches/1_1_4/pom.xml

Author: wsmoak
Date: Wed Aug  2 23:10:44 2006
New Revision: 428254

URL: http://svn.apache.org/viewvc?rev=428254&view=rev
Log:
Add a <distributionManagement> section to override the incorrect information coming from the master pom.
Set the <repository> so that even after the version number is changed to omit -SNAPSHOT, 'mvn deploy' will *not* publish jars to the official release repo by default.

Modified:
    myfaces/core/branches/1_1_4/pom.xml

Modified: myfaces/core/branches/1_1_4/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_1_4/pom.xml?rev=428254&r1=428253&r2=428254&view=diff
==============================================================================
--- myfaces/core/branches/1_1_4/pom.xml (original)
+++ myfaces/core/branches/1_1_4/pom.xml Wed Aug  2 23:10:44 2006
@@ -46,4 +46,17 @@
       <url>http://myfaces.zones.apache.org/dist/maven-repository</url>
     </repository>
   </repositories>
+  <distributionManagement>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Maven Snapshot (and Test Build) Repository</name>
+      <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+    </repository>
+    <snapshotRepository>
+      <uniqueVersion>false</uniqueVersion>
+      <id>apache.snapshots</id>
+      <name>Apache Maven Snapshot Repository</name>
+      <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+    </snapshotRepository>
+  </distributionManagement>
 </project>