Repository: ambari Updated Branches: refs/heads/trunk 7ce1d7a16 -> 3287763ca
AMBARI-12574. Add distributionManagement tag to ambari-metrics. (Ashish Singh via swagle) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/3287763c Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/3287763c Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/3287763c Branch: refs/heads/trunk Commit: 3287763cade0d8e7c0ce008b9baca64257e840b7 Parents: 7ce1d7a Author: Siddharth Wagle <[email protected]> Authored: Thu Jul 30 16:48:52 2015 -0700 Committer: Siddharth Wagle <[email protected]> Committed: Thu Jul 30 16:48:59 2015 -0700 ---------------------------------------------------------------------- ambari-metrics/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/3287763c/ambari-metrics/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-metrics/pom.xml b/ambari-metrics/pom.xml index 7f6516f..27d8347 100644 --- a/ambari-metrics/pom.xml +++ b/ambari-metrics/pom.xml @@ -48,7 +48,25 @@ /usr/lib/python2.6/site-packages/resource_monitoring </resmonitor.install.dir> <powermock.version>1.6.2</powermock.version> + <distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId> + <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName> + <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> + <distributionManagement> + <repository> + <id>${distMgmtStagingId}</id> + <name>${distMgmtStagingName}</name> + <url>${distMgmtStagingUrl}</url> + </repository> + <snapshotRepository> + <id>${distMgmtSnapshotsId}</id> + <name>${distMgmtSnapshotsName}</name> + <url>${distMgmtSnapshotsUrl}</url> + </snapshotRepository> + </distributionManagement> <repositories> <repository> <id>apache-hadoop</id>
