Bug Killer
Bug Killer

Reputation: 661

Error building hadoop 1.0.1 - missing pom.xml

I followed the instructions given here to download and build hadoop 1.0.1 from this repository. I have installed JDK, Maven, cmake, autoconf etc. When I run th efollowing command from the hadoop top level directory

   mvn -e package -Pdist -Pdoc -Psrc -Dtar -DskipTests

mvn reports an error saying that no pom.xml is found. There is no pom.xml file in the folder or any subfolders.

Upvotes: 0

Views: 310

Answers (1)

Charlee Chitsuk
Charlee Chitsuk

Reputation: 9059

As far as I investigate the Hadoop Common tags, only version 0.23.x and 2.0.x is a Maven project. The rest is an Ant and/or Ivy project. Please note If there is no pom.xml it is not a Maven project.

If you would like to build the version 1.0.1, please use Apache Ant or Apache Ivy instead.

Upvotes: 1

Related Questions