i want to use tomcat7-maven-plugin to deploy war file from my local machine to remote server, here's the configuration i have so far:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-beta-1</version>
<configuration>
<server>pb</server>
<url>http://mydomain.com:8080/manager/html</url>
</configuration>
</plugin>
do i need more configuration ? and what command do i use to deploy ?