<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <path>/</path> <!--和tomcat服务器通信时使用的url编码字符集--> <charset>UTF-8</charset> <uriEncoding>UTF-8</uriEncoding> <!--<port>80</port>--> <url>http://localhost:8080/manager/text</url> <username>manager</username> <password>tomcat</password> <update>true</update> </configuration> </plugin>
指定了URL上字符编码格式, 服务端口; 部署用的用户名和密码(script manager)。
会根据文件修改更新服务器。
原文:http://www.cnblogs.com/silvestris/p/5164610.html