SLIDER-254 added ASF snapshots repository to pull in snapshot versions of accumulo and hadoop
Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/c89b264e Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/c89b264e Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/c89b264e Branch: refs/heads/feature/SLIDER-149_Support_a_YARN_service_registry Commit: c89b264e9cd38698eb6a9dec7d979c873e90baa2 Parents: 3178498 Author: Billie Rinaldi <[email protected]> Authored: Fri Aug 22 18:57:15 2014 -0700 Committer: Billie Rinaldi <[email protected]> Committed: Fri Aug 22 18:57:15 2014 -0700 ---------------------------------------------------------------------- app-packages/accumulo/pom.xml | 18 ++++++++++++++++++ pom.xml | 10 ++++++++++ 2 files changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/c89b264e/app-packages/accumulo/pom.xml ---------------------------------------------------------------------- diff --git a/app-packages/accumulo/pom.xml b/app-packages/accumulo/pom.xml index d3f83a7..c2cbe1a 100644 --- a/app-packages/accumulo/pom.xml +++ b/app-packages/accumulo/pom.xml @@ -146,6 +146,24 @@ <version>${accumulo.version}</version> <classifier>bin</classifier> <type>tar.gz</type> + <exclusions> + <exclusion> + <groupId>org.apache.accumulo</groupId> + <artifactId>accumulo-fate</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.accumulo</groupId> + <artifactId>accumulo-gc</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.accumulo</groupId> + <artifactId>accumulo-master</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.accumulo</groupId> + <artifactId>accumulo-minicluster</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.accumulo</groupId> http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/c89b264e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ab6e9a6..dffa493 100644 --- a/pom.xml +++ b/pom.xml @@ -207,6 +207,16 @@ <id>ASF Staging</id> <url>https://repository.apache.org/content/groups/staging/</url> </repository> + <repository> + <id>ASF Snapshots</id> + <url>https://repository.apache.org/content/repositories/snapshots/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> </repositories>
