refer to top level property for hadoop version instead of hardcoding 2.3.0

This commit is contained in:
Himanshu Gupta 2015-10-26 15:51:48 -05:00
parent ea4ed5692c
commit e9cfb7f46f
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>