Repository: kudu Updated Branches: refs/heads/master 07c1b00c3 -> 362743c34
java: inherit from ASF parent pom This removes the Cloudera distribution management section and adds the ASF parent pom to pick up the ASF nexus for distribution management. Change-Id: Icf4e46b9ba50c74fb7943aabd2065609e3c5e011 Reviewed-on: http://gerrit.cloudera.org:8080/4118 Tested-by: Kudu Jenkins Reviewed-by: Adar Dembo <[email protected]> Reviewed-by: Dan Burkert <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/362743c3 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/362743c3 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/362743c3 Branch: refs/heads/master Commit: 362743c34f9b8572f576f3f06c74be4794706e51 Parents: 07c1b00 Author: Todd Lipcon <[email protected]> Authored: Wed Aug 24 15:09:17 2016 -0700 Committer: Todd Lipcon <[email protected]> Committed: Fri Aug 26 20:59:30 2016 +0000 ---------------------------------------------------------------------- java/pom.xml | 36 ++++++++---------------------------- 1 file changed, 8 insertions(+), 28 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/362743c3/java/pom.xml ---------------------------------------------------------------------- diff --git a/java/pom.xml b/java/pom.xml index f354a09..9dc59a9 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -27,6 +27,14 @@ <version>1.0.0-SNAPSHOT</version> <packaging>pom</packaging> + <!-- inherit from the ASF POM for distribution management --> + <parent> + <groupId>org.apache</groupId> + <artifactId>apache</artifactId> + <version>18</version> + <relativePath/> + </parent> + <name>Kudu</name> <description> @@ -258,19 +266,6 @@ </repository> </repositories> - <distributionManagement> - <repository> - <id>cdh.releases.repo</id> - <url>${deploy.maven}</url> - <name>Releases Repository</name> - </repository> - <snapshotRepository> - <id>cdh.snapshots.repo</id> - <url>http://maven.jenkins.cloudera.com:8081/artifactory/cdh-snapshot-local</url> - <name>Snapshots Repository</name> - </snapshotRepository> - </distributionManagement> - <profiles> <!-- Build the CSD. @@ -281,20 +276,5 @@ <module>kudu-csd</module> </modules> </profile> - <profile> - <id>deploy-local</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - <properties> - <deploy.maven>http://maven.jenkins.cloudera.com:8081/artifactory/libs-release-local</deploy.maven> - </properties> - </profile> - <profile> - <id>deploy-remote</id> - <properties> - <deploy.maven>https://repository.cloudera.com/cloudera/libs-release-local</deploy.maven> - </properties> - </profile> </profiles> </project>
