I have a maven project that has a set of library dependancies that are not available via any maven repository. How can I add those libraries to the pom? I want to do this so when I run 'mvn eclipse:eclipse' it doesnt remove those libraries from the eclipse classpath.
|
You have 3 options:
Then, declare your libraries in your pom like any other dependency. |
||||
|
|
|
You can declare it as a dependency with
|
|||||||
|
|
You can include them with your project in a sub-directory (perhaps lib/). You can also provide .bat and/or .sh files containing all the appropriate calls to the maven-install-plugin necessary for each project member (or server env) to add these jars to the local repo. This approach allows new project members to get up & running quickly, without having to invest several hours in setting up a new public repo for your project or team. |
|||
|
|
|
You can't 'add them to the pom'. You have to put them in some repo. You can put them in the local repo with the maven-install-plugin, as suggested by the error message. Or you can deploy them in a local copy of Nexus or something like it. |
|||
|
|