Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Build with Apache Hadoop 1.2.x

trisberg edited this page Dec 19, 2014 · 7 revisions

Current: Spring for Apache Hadoop v2.0

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.

Spring for Apache Hadoop v2.0 application using Maven

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.

Previous: Spring for Apache Hadoop v1.x

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.

Spring for Apache Hadoop v1.x application using Maven

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>