tags:

views:

703

answers:

1

Is there any easy way to automatically deploy a web service / java web app, etc to a remote tomcat server? currently i have to manually copy the .war file.

+1  A: 

Personally, I add a "deploy" target in build.xml that contains an <scp> tag to transfer the war file.

Maurice Perry