HADOOP-9231. Parametrize staging URL for the uniformity of distributionManagement. Contributed by Konstantin Boudnik.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1437140 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Suresh Srinivas 2013-01-22 20:09:48 +00:00
parent 74ffc7a74d
commit 8535747cea
1 changed files with 9 additions and 5 deletions

14
pom.xml
View File

@ -36,12 +36,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>apache.staging.https</id> <id>${distMgmtStagingId}</id>
<name>Apache Release Distribution Repository</name> <name>${distMgmtStagingName}</name>
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url> <url>${distMgmtStagingUrl}</url>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>apache.snapshots.https</id> <id>${distMgmtSnapshotsId}</id>
<name>${distMgmtSnapshotsName}</name> <name>${distMgmtSnapshotsName}</name>
<url>${distMgmtSnapshotsUrl}</url> <url>${distMgmtSnapshotsUrl}</url>
</snapshotRepository> </snapshotRepository>
@ -53,7 +53,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<repositories> <repositories>
<repository> <repository>
<id>apache.snapshots.https</id> <id>${distMgmtSnapshotsId}</id>
<name>${distMgmtSnapshotsName}</name> <name>${distMgmtSnapshotsName}</name>
<url>${distMgmtSnapshotsUrl}</url> <url>${distMgmtSnapshotsUrl}</url>
</repository> </repository>
@ -79,8 +79,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
</organization> </organization>
<properties> <properties>
<distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId>
<distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName> <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
<distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl> <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
<distMgmtStagingId>apache.staging.https</distMgmtStagingId>
<distMgmtStagingName>Apache Release Distribution Repository</distMgmtStagingName>
<distMgmtStagingUrl>https://repository.apache.org/service/local/staging/deploy/maven2</distMgmtStagingUrl>
</properties> </properties>
<modules> <modules>