0.20.2 API hadoop version with java 5
Posted
by abdeslam
on Stack Overflow
See other posts from Stack Overflow
or by abdeslam
Published on 2010-06-07T15:02:25Z
Indexed on
2010/06/07
15:12 UTC
Read the original article
Hit count: 212
I have started a maven project trying to implement the MapReduce algorithm in java 1.5.0_14. I have chosen the 0.20.2 API hadoop version. In the pom.xml i'm using thus the following dependency:
< dependency>
< groupId>org.apache.hadoop< /groupId>
< artifactId>hadoop-core< /artifactId>
< version>0.20.2< /version>
< /dependency>
But when I'm using an import to the org.apache.hadoop classes, I get the following error:
bad class file: ${HOME_DIR}\repository\org\apache\hadoop\hadoop-core\0.20.2\hadoop-core-0.20.2.jar(org/apache/hadoop/fs/Path.class) class file has wrong version 50.0, should be 49.0.
Does someone know how can I solve this issue.
Thanks.
© Stack Overflow or respective owner