Repository: incubator-zeppelin Updated Branches: refs/heads/master 1df116fe4 -> a45a5c38e
ZEPPELIN-33 Need a maven profile for Hadoop 2.6 Trivial change to create a new maven profile for Hadoop 2.6, tested by running mvn clean install -DskipTests -Pspark-1.2 -Phadoop-2.6 -Pyarn Author: Ram Venkatesh <[email protected]> Closes #31 from RamVenkatesh/ZEPPELIN-33 and squashes the following commits: 17c81ac [Ram Venkatesh] ZEPPELIN-33 Need a maven profile for Hadoop 2.6 Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/a45a5c38 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/a45a5c38 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/a45a5c38 Branch: refs/heads/master Commit: a45a5c38e8962f795c234df357910423673034d7 Parents: 1df116f Author: Ram Venkatesh <[email protected]> Authored: Tue Apr 7 07:03:00 2015 -0700 Committer: Lee moon soo <[email protected]> Committed: Thu Apr 16 13:02:32 2015 -0500 ---------------------------------------------------------------------- pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/a45a5c38/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index d2fc77c..27ad467 100644 --- a/pom.xml +++ b/pom.xml @@ -1416,6 +1416,16 @@ </profile> <profile> + <id>hadoop-2.6</id> + <properties> + <hadoop.version>2.6.0</hadoop.version> + <protobuf.version>2.5.0</protobuf.version> + <jets3t.version>0.9.3</jets3t.version> + <codehaus.jackson.version>1.9.13</codehaus.jackson.version> + </properties> + </profile> + + <profile> <id>mapr3</id> <activation> <activeByDefault>false</activeByDefault>
