Reputation: 119
I can't compile Hadoop MapReduce on Eclipse. Can anyone help me?
Upvotes: 0
Views: 978
Reputation: 1697
Your error log indicates a project dependency issue. Have you tried the steps on Hadoop wiki, especially below commands which generates eclipse .project and .classpath files for you?
$ mvn install -DskipTests
$ mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs=true
More info on http://wiki.apache.org/hadoop/HowToContribute and http://wiki.apache.org/hadoop/EclipseEnvironment.
Upvotes: 0