Some 3rd party JAR files are not found in the public maven repository. To use them, do I need to manully add them to the local repository? Any steps to do it?
|
You can define a minimal pom for each jar and install them into the local repository. There's even a guide for it. The command (copied and pasted from the guide) is:
|
|||||
|
|
Aside from the answer of Aleksi you can also introduce a maven proxy, like Nexus or artifactory. These tools are accessed by maven (if so configured) to get the artifacts, and they in turn download them when required. With such a tool in place your local maven need only know about a single location, and the Nexus or Artifactory can map a series of internet repositories to a single "virtual" one. You can of course upload your own artifacts too. If you're developing on your own with a fast internet connection it might be a bit overkill though. If you're in an enterprise setting I'd recommend Artifactory. Nexus is not always tested all that well with older Maven versions :( |
|||
|
|