You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jaxme-dev@ws.apache.org by jo...@apache.org on 2009/02/22 03:35:37 UTC

svn commit: r746619 - /webservices/jaxme/trunk/ws-jaxme/pom.xml

Author: jochen
Date: Sun Feb 22 02:35:37 2009
New Revision: 746619

URL: http://svn.apache.org/viewvc?rev=746619&view=rev
Log:
Making deployment configurable.

Modified:
    webservices/jaxme/trunk/ws-jaxme/pom.xml

Modified: webservices/jaxme/trunk/ws-jaxme/pom.xml
URL: http://svn.apache.org/viewvc/webservices/jaxme/trunk/ws-jaxme/pom.xml?rev=746619&r1=746618&r2=746619&view=diff
==============================================================================
--- webservices/jaxme/trunk/ws-jaxme/pom.xml (original)
+++ webservices/jaxme/trunk/ws-jaxme/pom.xml Sun Feb 22 02:35:37 2009
@@ -136,21 +136,22 @@
       </plugin>
     </plugins>
   </reporting>
+
   <distributionManagement>
     <repository>
-      <id>apache-maven</id>
+      <id>${id.releases}</id>
       <name>Apache Maven Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+      <url>${url.releases}</url>
     </repository>
     <snapshotRepository>
-      <id>apache-maven-snapshots</id>
+      <id>${id.snapshots}</id>
       <name>Apache Maven Snapshot Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+      <url>${url.site}</url>
     </snapshotRepository>
     <site>
-      <id>jaxme-site</id>
+      <id>${id.site}</id>
       <name>JaxMe Site</name>
-      <url>scp://people.apache.org/www/ws.apache.org/jaxme</url>
+      <url>${url.site}</url>
     </site>
   </distributionManagement>
 
@@ -196,6 +197,14 @@
           </plugin>
         </plugins>
       </build>
+      <properties>
+        <id.releases>apache-maven</id.releases>
+        <url.releases>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url.releases>
+        <id.snapshots>apache-maven-snapshots</id.snapshots>
+        <url.snapshots>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url.snapshots>
+        <id.site>jaxme-site</id.site>
+        <url.site>scp://people.apache.org/www/ws.apache.org/jaxme</url.site>
+      </properties>
     </profile>
   </profiles>
 </project>



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