This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 357
Build with Apache Hadoop 1.2.x
trisberg edited this page Dec 19, 2014
·
7 revisions
If you build your own applications with Maven targeting Apache Hadoop 1.2.1 then you can use the latest Spring for Apache Hadoop 2.0 release using a version of 2.0.4.RELEASE-hadoop12
.
The current dependency to use for spring-data-hadoop with Apache Hadoop 1.2.1 is:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-hadoop</artifactId>
<version>2.0.4.RELEASE-hadoop12</version>
</dependency>
Note: The hadoop12 suffix for the spring-data-hadoop version will select the correct build that resolves the transitive dependencies for Apache Hadoop 1.2.1.
If you prefer to use Spring for Apapche Hadoop version 1.x when building your own applications with Maven targeting Apache Hadoop 1.2.1 then you can use a version of 1.1.0.RELEASE
.
The dependency to use for spring-data-hadoop with Apache Hadoop 1.2.1 is:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-hadoop</artifactId>
<version>1.1.0.RELEASE</version>
</dependency>