force Maven2 to copy dependencies into target/lib - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T12:28:40Zhttp://stackoverflow.com/feeds/question/97640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib7force Maven2 to copy dependencies into target/libMichael2008-09-18T22:26:09Z2009-09-19T22:23:00Z
<p>Hi,</p>
<p>How do I get my project's runtime dependencies copied into the target/lib folder? </p>
<p>As it is right now, after 'mvn clean install' the target folder contains only my project's jar, but none of the runtime depencies.</p>
<p>Thanks,</p>
<p>Michael</p>
http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/97748#977481Answer by Eduard Wirch for force Maven2 to copy dependencies into target/libEduard Wirch2008-09-18T22:44:14Z2008-09-18T22:44:14Z<p>If you make your project a war or ear type maven will copy the dependencies.</p>
http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/97837#978371Answer by bmatthews68 for force Maven2 to copy dependencies into target/libbmatthews682008-09-18T22:59:48Z2008-09-18T22:59:48Z<p>You can use the the <a href="http://maven.apache.org/plugins/maven-shade-plugin/" rel="nofollow">Shade Plugin</a> to create an uber jar in which you can bundle all your 3rd party dependencies.</p>
http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/98190#981906Answer by Travis B. Hartwell for force Maven2 to copy dependencies into target/libTravis B. Hartwell2008-09-19T00:03:12Z2008-09-19T00:03:12Z<p>Take a look at the <a href="http://maven.apache.org/plugins/maven-dependency-plugin/index.html" rel="nofollow">Maven dependency plugin</a>, specifically, the <a href="http://maven.apache.org/plugins/maven-dependency-plugin/copy-dependencies-mojo.html" rel="nofollow">dependency:copy-dependencies goal</a>. Take a look at <a href="http://maven.apache.org/plugins/maven-dependency-plugin/usage.html" rel="nofollow">the example</a> under the heading <strong>The dependency:copy-dependencies mojo</strong>. Set the <strong>outputDirectory</strong> configuration property to ${basedir}/target/lib (I believe, you'll have to test).</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/98743#987439Answer by John Stauffer for force Maven2 to copy dependencies into target/libJohn Stauffer2008-09-19T01:45:24Z2008-09-19T01:45:24Z<p>The best approach depends on what you want to do:</p>
<ul>
<li>If you want to bundle your dependencies into a WAR or EAR file, then simply set the packaging type of your project to EAR or WAR. Maven will bundle the dependencies into the right location.</li>
<li>If you want to create a JAR file that includes your code along with all your dependencies, then use the <a href="http://maven.apache.org/plugins/maven-assembly-plugin/descriptor.html" rel="nofollow" title="Maven2 Assembly Plugin Docs">assembly</a> plugin with the <em>jar-with-dependencies</em> descriptor. Maven will generate a complete JAR file with all your classes plus the classes from any dependencies.</li>
<li>If you want to simply pull your dependencies into the target directory interactively, then use the <a href="http://maven.apache.org/plugins/maven-dependency-plugin/introduction.html" rel="nofollow" title="Maven2 Dependency Plugin Docs">dependency</a> plugin to copy your files in.</li>
<li>If you want to pull in the dependencies for some other type of processing, then you will probably need to generate your own plugin. There are APIs to get the list of dependencies, and their location on disk. You will have to take it from there...</li>
</ul>
http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/996915#9969157Answer by Georgy Bolyuba for force Maven2 to copy dependencies into target/libGeorgy Bolyuba2009-06-15T15:58:18Z2009-07-13T15:36:38Z<p>This works for me:</p>
<pre><code><project>
...
<profiles>
<profile>
<id>qa</id>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
</code></pre>
http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-lib/1449651#14496511Answer by Rich Seller for force Maven2 to copy dependencies into target/libRich Seller2009-09-19T22:06:02Z2009-09-19T22:06:02Z<p>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 <a href="http://mojo.codehaus.org/appassembler/appassembler-maven-plugin/" rel="nofollow">appassembler-maven-plugin</a>.</p>
<p>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 <a href="http://maven.apache.org/plugins/maven-assembly-plugin/" rel="nofollow">assembly plugin</a> can then be used to package the whole appassembler directory to a zip which is installed/deployed along with the jar to the repository.</p>
<pre><code> <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>generate-jsw-scripts</id>
<phase>package</phase>
<goals>
<goal>generate-daemons</goal>
</goals>
<configuration>
<!--declare the JSW config -->
<daemons>
<daemon>
<id>myApp</id>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<commandLineArguments>
<commandLineArgument>start</commandLineArgument>
</commandLineArguments>
<platforms>
<platform>jsw</platform>
</platforms>
</daemon>
</daemons>
<target>${project.build.directory}/appassembler</target>
</configuration>
</execution>
<execution>
<id>assemble-standalone</id>
<phase>integration-test</phase>
<goals>
<goal>assemble</goal>
</goals>
<configuration>
<programs>
<program>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<!-- the name of the bat/sh files to be generated -->
<name>mymain</name>
</program>
</programs>
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/archive.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<p>The assembly descriptor (in src/main/assembly) to package the direcotry as a zip would be:</p>
<pre><code><assembly>
<id>archive</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}/appassembler</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>
</code></pre>