我希望能够使用maven
运行以下命令mvn tomcat7:deploy
我还想添加指定的更新参数
http://tomcat.apache.org/maven-plugin-2.0-SNAPSHOT/tomcat7-maven-plugin/deploy-mojo.html
如何在命令中添加更新true?
答案 0 :(得分:2)
在配置元素中:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<configuration>
<update>true</update>
<url>http://www.mydomain.com:1234/mymanager</url>
</configuration>
</plugin>
http://tomcat.apache.org/maven-plugin-2.0-SNAPSHOT/tomcat7-maven-plugin/usage.html