Repository: spark Updated Branches: refs/heads/branch-1.0 5e4ac7c3a -> c118e0f23
[Build] Set hadoop version from yarn profiles This has been failing maven builds for a long time. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c118e0f2 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c118e0f2 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c118e0f2 Branch: refs/heads/branch-1.0 Commit: c118e0f2331e422691398436f9a9b09d191860ec Parents: 5e4ac7c Author: Andrew Or <[email protected]> Authored: Fri Dec 5 13:50:14 2014 -0800 Committer: Andrew Or <[email protected]> Committed: Fri Dec 5 13:50:14 2014 -0800 ---------------------------------------------------------------------- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c118e0f2/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5f7e103..a685863 100644 --- a/pom.xml +++ b/pom.xml @@ -979,6 +979,9 @@ <profile> <id>hadoop-0.23</id> + <properties> + <hadoop.version>0.23.10</hadoop.version> + </properties> <!-- SPARK-1121: Adds an explicit dependency on Avro to work around a Hadoop 0.23.X issue --> <dependencies> <dependency> @@ -991,6 +994,7 @@ <profile> <id>hadoop-2.2</id> <properties> + <hadoop.version>2.2.0</hadoop.version> <protobuf.version>2.5.0</protobuf.version> </properties> </profile> @@ -998,6 +1002,7 @@ <profile> <id>hadoop-2.3</id> <properties> + <hadoop.version>2.3.0</hadoop.version> <protobuf.version>2.5.0</protobuf.version> <jets3t.version>0.9.0</jets3t.version> </properties> @@ -1006,6 +1011,7 @@ <profile> <id>hadoop-2.4</id> <properties> + <hadoop.version>2.4.0</hadoop.version> <protobuf.version>2.5.0</protobuf.version> <jets3t.version>0.9.0</jets3t.version> </properties> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
