You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jo...@apache.org on 2006/12/29 22:53:17 UTC

svn commit: r491116 - /jakarta/commons/proper/commons-parent/trunk/pom.xml

Author: jochen
Date: Fri Dec 29 13:53:16 2006
New Revision: 491116

URL: http://svn.apache.org/viewvc?view=rev&rev=491116
Log:
Made the protocol in the deployment URL pluggable, so that users can choose scpexe over scp.

Modified:
    jakarta/commons/proper/commons-parent/trunk/pom.xml

Modified: jakarta/commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/commons-parent/trunk/pom.xml?view=diff&rev=491116&r1=491115&r2=491116
==============================================================================
--- jakarta/commons/proper/commons-parent/trunk/pom.xml (original)
+++ jakarta/commons/proper/commons-parent/trunk/pom.xml Fri Dec 29 13:53:16 2006
@@ -164,7 +164,7 @@
         <repository>
           <id>apache.releases</id>
           <name>Apache Release Distribution Repository</name>
-          <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+          <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
         </repository>
       </distributionManagement>
       <build>
@@ -203,8 +203,13 @@
         <repository>
           <id>apache.snapshots</id>
           <name>Apache Development Snapshot Repository</name>
-          <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+          <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
         </repository>
+        <snapshotRepository>
+          <id>apache.snapshots</id>
+          <name>Apache Development Snapshot Repository</name>
+          <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+        </snapshotRepository>
       </distributionManagement>
       <build>
         <plugins>
@@ -245,4 +250,11 @@
     <maven.compile.target>1.3</maven.compile.target>
   </properties> 
   -->
-</project>
\ No newline at end of file
+  <properties>
+    <!--
+      Make the deployment protocol pluggable. This allows to switch to
+      other protocols like scpexe, which some users prefer over scp.
+    -->
+    <commons.deployment.protocol>scp</commons.deployment.protocol>
+  </properties>
+</project>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org