Repository: ambari Updated Branches: refs/heads/branch-2.1 fae88b9aa -> 408d768c9
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/408d768c Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/408d768c Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/408d768c Branch: refs/heads/branch-2.1 Commit: 408d768c9d36abf401801282d530283071730add Parents: fae88b9 Author: Siddharth Wagle <[email protected]> Authored: Fri Jul 31 13:32:52 2015 -0700 Committer: Siddharth Wagle <[email protected]> Committed: Fri Jul 31 13:32:52 2015 -0700 ---------------------------------------------------------------------- ambari-metrics/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/408d768c/ambari-metrics/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-metrics/pom.xml b/ambari-metrics/pom.xml index c1dfa98..8626341 100644 --- a/ambari-metrics/pom.xml +++ b/ambari-metrics/pom.xml @@ -47,7 +47,25 @@ <resmonitor.install.dir> /usr/lib/python2.6/site-packages/resource_monitoring </resmonitor.install.dir> + <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>
