Tomcat的Maven插件
<build> <plugins> <plugin> <!--tomcat插件--> <groupId>ch.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </build>
以上是pom.xml添加tomcat插件

这样配置文件也可以的
<build> <plugins> <plugin> <!--tomcat插件--> <groupId>ch.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </build>
以上是pom.xml添加tomcat插件

这样配置文件也可以的