Add spark-1.3 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/3058d6d9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/3058d6d9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/3058d6d9 Branch: refs/heads/master Commit: 3058d6d972f91c313d94529322ef124d4ef21b83 Parents: a3df56a Author: Lee moon soo <[email protected]> Authored: Sat Mar 14 03:40:39 2015 +0900 Committer: Lee moon soo <[email protected]> Committed: Sat Mar 14 03:40:39 2015 +0900 ---------------------------------------------------------------------- pom.xml | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/3058d6d9/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4a60516..8cf8b1a 100644 --- a/pom.xml +++ b/pom.xml @@ -105,6 +105,8 @@ <jets3t.version>0.7.1</jets3t.version> <commons.math3.version>3.2</commons.math3.version> <commons.httpclient.version>4.3.6</commons.httpclient.version> + <codehaus.jackson.version>1.8.8</codehaus.jackson.version> + <snappy.version>1.0.5</snappy.version> <io.netty.version>4.0.17.Final</io.netty.version> <guava.version>15.0</guava.version> @@ -286,7 +288,7 @@ <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> - <version>1.0.5</version> + <version>${snappy.version}</version> </dependency> <dependency> @@ -762,13 +764,13 @@ <!-- Matches the version of jackson-core-asl pulled in by avro --> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> - <version>1.8.8</version> + <version>${codehaus.jackson.version}</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> - <version>1.8.8</version> + <version>${codehaus.jackson.version}</version> </dependency> <dependency> @@ -1252,6 +1254,35 @@ </properties> </profile> + <profile> + <id>spark-1.3</id> + <dependencies> + </dependencies> + <properties> + <akka.version>2.3.4-spark</akka.version> + <spark.version>1.3.0</spark.version> + <mesos.version>0.21.0</mesos.version> + <hbase.version>0.98.7</hbase.version> + <hbase.artifact>hbase</hbase.artifact> + <hive.group>org.spark-project.hive</hive.group> + <hive.version>0.13.1a</hive.version> + <derby.version>10.10.1.1</derby.version> + <orbit.version>3.0.0.v201112011016</orbit.version> + <parquet.version>1.6.0rc3</parquet.version> + <chill.version>0.5.0</chill.version> + <ivy.version>2.4.0</ivy.version> + <oro.version>2.0.8</oro.version> + <avro.mapred.classifier></avro.mapred.classifier> + <codahale.metrics.version>3.1.0</codahale.metrics.version> + <commons.httpclient.version>4.2.6</commons.httpclient.version> + <commons.math3.version>3.1.1</commons.math3.version> + <io.netty.version>4.0.23.Final</io.netty.version> + <codehaus.jackson.version>1.8.8</codehaus.jackson.version> + <fasterxml.jackson.version>2.4.4</fasterxml.jackson.version> + <snappy.version>1.1.1.6</snappy.version> + </properties> + </profile> + <profile> <id>hadoop-0.23</id> <!-- SPARK-1121: Adds an explicit dependency on Avro to work around a
