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 can declare it as a dependency with system scope.
system
... sun.jdk tools 1.5.0 system ${java.home}/../lib/tools.jar ...