Currently I have a maven project which is based on Hadoop 1.2.1 and I want to migrate my project from Hadoop 1.2.1 to 2.2. My old dependencies are as follows:
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>1.2.1</version>
</dependency>
I tried to change the version to 2.2, but it is not working. Can anyone help me out in migrating my project to Hadoop 2.2?