I have a maven pom file for an open source project. This pom file has all the info like what other jars it depends on etc. I installed maven. Created a dir samprj and copied the pom file into that dir. Cd into that dir and ran mvn command without any arguments but I got bunch of errors. I am absolutely new to maven so I think I am missing something. I tried also from Eclipse ( Import project -- exisitng maven project) but that also does not work except eclipse creates a project that has just that file pom.xml. I expect something that first it will download the jar for the project and then download all dependent jars and config files but nothing there. So given a pom file how do I build the project from it?
|
|
If you want to open this within Eclipse, you need to install m2eclipse: and then import the project as a Maven project as described here: |
|||
|
|
It sounds like you only have the project's POM file. This is not sufficient. You need to checkout the complete source tree for the project. Having done that, change directory to the directory containing the POM file and run Also, don't copy the POM to a different directory. Maven expects to find all of the source files relative to the POM file location. FOLLOW UP
Probably because you hadn't checked out the source.
Use a subversion client (the If this was a properly documented project, there would be clear instructions on what version control and build tools you needed, how to checkout the source code and how to build it.
It doesn't necessarily, though in this particular case it does.
The You need to read up on Maven, Subversion and the related Eclipse plugins. |
|||||||||||
|
|
Try out their getting started guide. It has a lot of good examples: |
|||
|
|