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
|
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 | |||||||||
feedback
|
|
This works for me:
| |||||
feedback
|
|
The best approach depends on what you want to do:
| |||
|
feedback
|
|
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. | |||
feedback
|
|
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:
| |||
|
feedback
|
|
a simple and elegant solution for the case where one needs to copy the dependencies to a target directory without using any other phases of maven is (I found this very useful when working with Vaadin): add this part to your pom.xml
and just run mvn process-sources | |||
feedback
|
|
If you make your project a war or ear type maven will copy the dependencies. | |||
|
feedback
|
|
You can use the the Shade Plugin to create an uber jar in which you can bundle all your 3rd party dependencies. | |||
|
feedback
|
|
Just to spell out what has already been said in brief. I wanted to create an executable JAR file that included my dependencies along with my code. This worked for me: (1) In the pom, under <build><plugins>, I included:
(2) Running mvn compile assembly:assembly produced the desired my-project-0.1-SNAPSHOT-jar-with-dependencies.jar in the project's target directory. (3) I ran the JAR with java -jar my-project-0.1-SNAPSHOT-jar-with-dependencies.jar | |||
|
feedback
|
|
I tried as said by "Rich Seller" but I got only wrapper.jar in the lib dir (not the dependency jar's). Am I missing anything? I copied the pom as in the post except the mainClass I did not change anything. | |||
|
feedback
|
|
If you're having problems related to dependencies not appearing in the WEB-INF/lib file when running on a Tomcat server in Eclipse, take a look at this: You simply had to add the Maven Dependencies in Project Properties > Deployment Assembly. | |||
|
feedback
|