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 s
You have 3 options:
install:install-file (obviously, this is not portable, you won't be able to build the project on another machine without doing the same).deploy:deploy-file.Then, declare your libraries in your pom like any other dependency.