using properties for repo locations so that they can be overriden on the command line

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/branches/activemq-4.0@465284 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-10-18 16:09:08 +00:00
parent 55867a9a3a
commit 0cc41ce86c
1 changed files with 10 additions and 4 deletions

14
pom.xml
View File

@ -109,17 +109,17 @@
<repository>
<id>apache-repo</id>
<name>Apache CVS Repository</name>
<url>scpexe://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
<url>${dist-repo-url}</url>
</repository>
<snapshotRepository>
<id>apache-snapshots</id>
<name>Apache CVS Development Repository</name>
<url>scpexe://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
<url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
</snapshotRepository>
<!--
<site>
<id>geronimo-website</id>
<url>scpexe://minotaur.apache.org/www/geronimo.apache.org/maven/</url>
<url>${site-repo-url}</url>
</site>
-->
</distributionManagement>
@ -779,7 +779,7 @@
<executions>
<execution>
<configuration>
<remoteRepositoryUrl>scpexe://minotaur.apache.org/www/cvs.apache.org/repository</remoteRepositoryUrl>
<remoteRepositoryUrl>${m1-dist-repo-url}</remoteRepositoryUrl>
</configuration>
<goals>
<goal>install-maven-one-repository</goal>
@ -815,4 +815,10 @@
</plugins>
</reporting>
<properties>
<dist-repo-url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-incubating-repository</dist-repo-url>
<m1-dist-repo-url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m1-snapshot-repository</m1-dist-repo-url>
<site-repo-url>scpexe://people.apache.org/www/incubator.apache.org/activemq/maven/</site-repo-url>
</properties>
</project>