Repository: incubator-zeppelin Updated Branches: refs/heads/master 0ee791ce2 -> ca58b8009
[ZEPPELIN-770] Add support for MapR 5.1 ### What is this PR for? Adding support for MapR 5.1 via profile ### What type of PR is it? Improvement ### Todos * [x] - Add MapR 5.1 profile to spark-dependencies/pom.xml * [x] - Update README.md to reflect new profile. ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-770 ### How should this be tested? Standard build with the -Pmapr51 profile ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Chris Matta <[email protected]> Closes #803 from cjmatta/ZEPPELIN-770 and squashes the following commits: 0f04f52 [Chris Matta] Adding MapR 5.1 profile documentation to README d6a7f0e [Chris Matta] adding MapR 5.1 profile Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/ca58b800 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/ca58b800 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/ca58b800 Branch: refs/heads/master Commit: ca58b8009913336f776235b37225c74760ff38eb Parents: 0ee791c Author: Chris Matta <[email protected]> Authored: Mon Mar 28 19:07:06 2016 +0000 Committer: Felix Cheung <[email protected]> Committed: Thu Mar 31 11:35:57 2016 -0700 ---------------------------------------------------------------------- README.md | 1 + spark-dependencies/pom.xml | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ca58b800/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index cca45d4..20b2669 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,7 @@ Available profiles are -Pmapr40 -Pmapr41 -Pmapr50 +-Pmapr51 ``` http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ca58b800/spark-dependencies/pom.xml ---------------------------------------------------------------------- diff --git a/spark-dependencies/pom.xml b/spark-dependencies/pom.xml index 7a98647..819de93 100644 --- a/spark-dependencies/pom.xml +++ b/spark-dependencies/pom.xml @@ -715,6 +715,45 @@ </profile> <profile> + <id>mapr51</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <properties> + <hadoop.version>2.7.0-mapr-1602</hadoop.version> + <yarn.version>2.7.0-mapr-1602</yarn.version> + <jets3t.version>0.9.3</jets3t.version> + </properties> + <dependencies> + <dependency> + <groupId>org.apache.curator</groupId> + <artifactId>curator-recipes</artifactId> + <version>2.4.0</version> + <exclusions> + <exclusion> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + <version>3.4.5-mapr-1503</version> + </dependency> + </dependencies> + <repositories> + <repository> + <id>mapr-releases</id> + <url>http://repository.mapr.com/maven/</url> + <snapshots><enabled>false</enabled></snapshots> + <releases><enabled>true</enabled></releases> + </repository> + </repositories> + </profile> + + + <profile> <id>yarn</id> <dependencies> <dependency>
