java - How to just deploy jar from Maven? -
actually deploy projects on server maven ("mvn deploy"), deploy jar , not files md5, sha1, xml ...
for connection use :
<distributionmanagement> <repository> <id>myid</id> <url>scp://myurl/url> </repository> </distributionmanagement>
and
<extensions> <extension> <groupid>org.apache.maven.wagon</groupid> <artifactid>wagon-ssh</artifactid> <version>2.4</version> </extension> </extensions>
thanks in advance !
if understand need, ...
visit http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html
Comments
Post a Comment