views:

141

answers:

2

Hi,

I installed Maven 1, following the doc here http://maven.apache.org/maven-1.x/start/install.html

Installation was successful, then I typed in "maven site" as shown in the doc here maven.apache.org/maven-1.x/start/quick-start.html

I get the error "Warning : No pom file was found, assuming default settings!"

From what I understand, maven 1 does not have pom file. Why is it prompting to me that the pom file was not found?

Thanks

+6  A: 

Since you're just starting out, may I suggest that you start over with the current, supported version of Maven. http://maven.apache.org/

Maven 1.x is obsoleted by Maven 2.2.x

BryanD
Hi there,Thanks for your reply. However, I need to customize an existing application done by another developer. To understand and debug the code, I need to be able to set it up on my local environment.
Sylph
Understood; but I think the first step in taking control of this code should be to get it into a workable form. Upgrading to maven2 may take some work but it should prove a good investment of your time.
Carl Smotricz
A: 

From what I understand, maven 1 does not have pom file. Why is it prompting to me that the pom file was not found?

Maven 1.x had a Project Object Model (POM) too, it was just not called pom.xml but project.xml.

Pascal Thivent