How do I copy built artifact to a directory on remote Windows server in maven deploy phase? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T12:01:09Zhttp://stackoverflow.com/feeds/question/249657http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/249657/how-do-i-copy-built-artifact-to-a-directory-on-remote-windows-server-in-maven-dep0How do I copy built artifact to a directory on remote Windows server in maven deploy phase?Petr Macek2008-10-30T09:26:10Z2009-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#2499111Answer by Roland Schneider for How do I copy built artifact to a directory on remote Windows server in maven deploy phase?Roland Schneider2008-10-30T11:46:09Z2008-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#2500213Answer by Petr Macek for How do I copy built artifact to a directory on remote Windows server in maven deploy phase?Petr Macek2008-10-30T12:35:52Z2009-07-30T22:46:13Z<p>Actually I have found a different way:
Dependency plugin!</p>
<pre><code><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-to-ebs</id>
<phase>deploy</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
</artifactItem>
</artifactItems>
<outputDirectory>\\someserver\somedirectory</outputDirectory>
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</code></pre>
<p>It also takes windows path like \resource.</p>