How do I install a specific package, like derbytools, with Maven without specifying it as a dependency of project?
|
|
|
|
|
|
|
Here is a sample using the
|
||||
|
|
|
For Maven to be able to use a jar, the jar needs to be declared as a dependency. If you have a jar that doesn't already exist on a Maven repository you can install it to your local repository using the install-plugin's install-file goal (as rich's answer says). This generates a pom using the values you provide and installs the pom and the jar to the local repository. Once that is done you would then add the dependency to your project's pom and use it as normal. In this case the dependency does exist on the central Maven repository (you can simply search for artifacts using the Sonatype public repository btw), so you can simply add this dependency to your POM:
If you do not want to install a dependency for whatever reason, you can alternatively use the From the documentation:
You could reference your derbytools jar as a system-scoped dependency like this:
|
||
|
|
