Hi,
How do I get my project's runtime dependencies copied into the target/lib folder?
As it is right now, after 'mvn clean install' the target folder contains only my project's jar, but none of the runtime depencies.
Thanks,
Michael
|
1
|
Hi, How do I get my project's runtime dependencies copied into the target/lib folder? As it is right now, after 'mvn clean install' the target folder contains only my project's jar, but none of the runtime depencies. Thanks, Michael |
|||
|
|
The best approach depends on what you want to do:
|
||
|
|
|
|
Take a look at the Maven dependency plugin, specifically, the dependency:copy-dependencies goal. Take a look at the example under the heading The dependency:copy-dependencies mojo. Set the outputDirectory configuration property to ${basedir}/target/lib (I believe, you'll have to test). Hope this helps. |
||
|
|
|
|
This works for me:
|
|||
|
|
|
|
If you make your project a war or ear type maven will copy the dependencies. |
||
|
|
|
|
You can use the the Shade Plugin to create an uber jar in which you can bundle all your 3rd party dependencies. |
||
|
|
|
|
If you want to deliver a bundle of your application jar, together with all it's dependencies and some scripts to invoke the MainClass, look at the appassembler-maven-plugin. The following configuration will generate scripts for Window and Linux to launch the application (with a generated path referencing all the dependency jars, download all dependencies (into a lib folder below target/appassembler). The assembly plugin can then be used to package the whole appassembler directory to a zip which is installed/deployed along with the jar to the repository.
The assembly descriptor (in src/main/assembly) to package the direcotry as a zip would be:
|
||
|
|
<scope>of your<dependencies>? – Pascal Thivent Mar 13 at 5:50