pm3310
pm3310

Reputation: 119

Building hadoop mapreduce in Eclipse indigo

I can't compile Hadoop MapReduce on Eclipse. Can anyone help me?

Upvotes: 0

Views: 978

Answers (1)

michaelliu
michaelliu

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

Related Questions