I want to migrate to Maven, but I've got a few jars without any POM that I want to use. When somebody else downloads the project he shouldn't need to fidget around with any maven commandline install commands.

Is there an easy way only with Ecplise and m2e to use jar files?

E.g the jars are already in /src/main/resources so maybe just a simple click on the pom.xml?

I'm totally new to Maven so maybe the question is stupid, but this is really preventing me from getting started and convincing anybody else to use Maven.

link|improve this question

71% accept rate
Your created the jars on your own? If the jars are from other open-source-projects you might find them here: search.maven.org/#browse If you found you add it as dependency – EhmKa Jan 10 at 13:19
No they are closed source jar not to be found in any repo. – Franz Kafka Jan 10 at 13:25
feedback

1 Answer

up vote 2 down vote accepted

Since the main idea of maven is to provide anybody only with a pom.xml which contains all dependencies, the best would be (at least for the first step) to install your files in your local maven cache. (should be found in ~/.m2/)

How to do it is described here: http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html

After doing this you should modify your pom.xml and add the dependencies, with the values provided for calling the tool.

Your colleagues have to do install your jars in there local maven cache to.

A better solution would be to download artifactory (http://www.jfrog.com/products.php), a tool which stores all your maven jars and allows any build to download them from it.

link|improve this answer
When deploying from the UI, Artifactory can also auto-generate a POM file to match the deployed jar – noamt Jan 10 at 13:55
jFrog is nice.. – Franz Kafka Jan 10 at 15:36
feedback

Your Answer

 
or
required, but never shown

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