What I am trying to do:
Have one hudson job that asks the user to select the tomcat server ip to deploy the war file.
What I have done:
I created a parameterized hudson job "projectname-deploy" that asks the user to select the server to deploy (dev, staging, live) the war file. In Hudson's deploy plugin field "Tomcat URL" I provided http://${SERVER}:8080/ -- SERVER is the parameter field that contains server IP. However, ${SERVER} is not getting replaced with the ip address the user selected.
Any suggestions on how to get a war deployed to the user selected tomcat server? thanks!