Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have pom.xml file that contains dependencies and files to checkout from svn so there is no no need to generate project. I just need these libraries and those files, so is there any way to get them without generating a project with maven directory structure?

share|improve this question
What do you mean by "contains ... files"? These are normally the files from your project. So compiling a pom normally means: 1. instantiate the project from the pom 2. do the normal maven things with it. Build server do just that. – mliebelt Oct 13 '11 at 10:16
We want to use Maven just to download libraries and download other files not source code – Feras Odeh Oct 13 '11 at 10:31
That is an unusual usage of Maven. It does not hurt to create a base project (jar), and include there the POM. – mliebelt Oct 13 '11 at 11:39

1 Answer

up vote 2 down vote accepted

I'm not sure from your question what do you want. If you have pom.xml file and you want to download all dependencies defined in it, you can call

mvn dependency:copy-dependencies

For more options look maven copy-dependencies task page

If you are asking how to create pom that will contain no code, but only dependencies, you can do that by specifying pom packaging.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.