Question:
I wanted to switch from Hadoop 1.2.1 to Hadoop 2.2. In my project I'm using Maven and it can handle
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>1.2.1</version>
</dependency>
woithout any problems, however changing the version to 2.2 in not working as it is not available in the central maven repository.
Any ideas how can I include Hadoop 2.2. in my maven-ized project?
Answer:
Most of hadoop-core dependencies can be found in hadoop-client:
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>2.2.0</version>
</dependency>