Merge pull request #1864 from himanshug/hdfs_storage_hadoop_version

hdfs-storage refer to top level property for hadoop version instead of hardcoding to 2.3.0
This commit is contained in:
Gian Merlino 2015-10-26 23:25:53 -07:00
commit 4f746ddf63
1 changed files with 3 additions and 3 deletions

View File

@ -84,21 +84,21 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<version>2.3.0</version>
<version>${hadoop.compile.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>2.3.0</version>
<version>${hadoop.compile.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<version>2.3.0</version>
<version>${hadoop.compile.version}</version>
<scope>test</scope>
</dependency>
</dependencies>