How do I copy built artifact to a directory on remote Windows server in maven deploy phase? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T12:01:09Z http://stackoverflow.com/feeds/question/249657 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249657/how-do-i-copy-built-artifact-to-a-directory-on-remote-windows-server-in-maven-dep 0 How do I copy built artifact to a directory on remote Windows server in maven deploy phase? Petr Macek 2008-10-30T09:26:10Z 2009-07-30T22:46:13Z <p>Hello, could someone provide working example (full maven plugin configuration) how to copy built jar file to a specific server(s) at the time of deploy phase?</p> <p>I have tried to look at wagon plugin, but it is hugely undocumented and I was not able to set it up. The build produces standard jar that is being deployed to Nexus, but I need to put the jar also to the test server automatically over local network (\someserver\testapp\bin).</p> <p>I will be grateful for any hints.</p> <p>Thank you</p> http://stackoverflow.com/questions/249657/how-do-i-copy-built-artifact-to-a-directory-on-remote-windows-server-in-maven-dep/249911#249911 1 Answer by Roland Schneider for How do I copy built artifact to a directory on remote Windows server in maven deploy phase? Roland Schneider 2008-10-30T11:46:09Z 2008-10-30T11:46:09Z <p>I don't have a working example but the <a href="http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html" rel="nofollow">"Maven Assembly Plugin"</a> should do the job. You can configure it to run automatically in the deploy phase.<br /> When you write your own assembly descriptor you can specify a path where the assembly should be written to. I think maven shouldn't care about wether it's a local or remote path.</p> http://stackoverflow.com/questions/249657/how-do-i-copy-built-artifact-to-a-directory-on-remote-windows-server-in-maven-dep/250021#250021 3 Answer by Petr Macek for How do I copy built artifact to a directory on remote Windows server in maven deploy phase? Petr Macek 2008-10-30T12:35:52Z 2009-07-30T22:46:13Z <p>Actually I have found a different way: Dependency plugin!</p> <pre><code>&lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-dependency-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;copy-to-ebs&lt;/id&gt; &lt;phase&gt;deploy&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;copy&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;artifactItems&gt; &lt;artifactItem&gt; &lt;groupId&gt;${project.groupId}&lt;/groupId&gt; &lt;artifactId&gt;${project.artifactId}&lt;/artifactId&gt; &lt;version&gt;${project.version}&lt;/version&gt; &lt;type&gt;${project.packaging}&lt;/type&gt; &lt;/artifactItem&gt; &lt;/artifactItems&gt; &lt;outputDirectory&gt;\\someserver\somedirectory&lt;/outputDirectory&gt; &lt;stripVersion&gt;true&lt;/stripVersion&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> <p>It also takes windows path like \resource.</p>