does anyone know a way to configure a maven goal to deploy to a tomcat server after a build is run? I know that this is possible using the maven-tomcat-plugin but it looks as though as this only works for Maven 2 whereas I'm using Maven 1.1
I'm currently trying to set up Hudson so this would be part of my continuous intergration phase which I hope will run like this:
- Build all necessary components
 - Build war and deploy to (local) server
 - Run selenium tests
 
Any help with this would be much appreciated.
Thanks.