You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by an...@apache.org on 2014/12/05 22:50:46 UTC

spark git commit: [Build] Set hadoop version from yarn profiles

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 <an...@databricks.com>
Authored: Fri Dec 5 13:50:14 2014 -0800
Committer: Andrew Or <an...@databricks.com>
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: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org