Skip to content

Commit

Permalink
Harmonize Hadoop dependency to hadoop.version (and bump to 2.7.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
srowen authored and yiheng-wang-intel committed May 5, 2017
1 parent bfbab70 commit 3ffec22
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
<native-maven-plugin.version>1.0-alpha-8</native-maven-plugin.version>
<maven-enforcer-plugin.version>1.3.1</maven-enforcer-plugin.version>

<hadoop.version>2.6.0</hadoop.version>
<hadoop.version>2.7.3</hadoop.version>
<guava.version>11.0.2</guava.version>
<thrift.path>thrift</thrift.path>
<thrift.version>0.9.2</thrift.version>
Expand Down Expand Up @@ -227,6 +227,24 @@
<version>${scalatest.version}</version>
<scope>${spark-scope}</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
<scope>${spark-scope}</scope>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<scope>${spark-scope}</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
7 changes: 0 additions & 7 deletions spark/dl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>2.7.1</version>
<scope>${spark-scope}</scope>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down

0 comments on commit 3ffec22

Please sign in to comment.