Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Cargo Problem

Using Maven, uploading to server seems to be done via Cargo plugin or the "Tomcat plugin". But as it seems they use the Tomcat manager application to upload to the server:

Just Want Uploading The File

Any way I just want to have something like: simply providing FTP of SFTP access to the target folder (usually $CATALINA_HOME/webapp) for the plugin and it just uploads the war file to the target. No manager access, nothing like that. The rest is taken of by autodeploy in Tomcat.

So, what is the solution?

P.S. mvn delpoy does not seem to be a solution, since it says it's for "repositories" not runtime.

share|improve this question

1 Answer

up vote 2 down vote accepted

You can use either the maven-exec-plugin to execute any shell script doing the scp.

Another solution, if you are familiar with ant is to use the maven-antrun-plugin and having an ant task doing the scp

helpful links :

share|improve this answer
Thanks for mentioning the maven-exec-plugin. Yes that is possible, but I was looking for a more "specialized" solution. To me, using the "exec" here seems like more of a workaround, rather than the specific solution. If no better answers are proposed in a reasonable time, I will accept this. Thank you. – Hossein Feb 1 at 14:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.