第二十一章 Maven实战 使用tomcat-maven-plugin插件自动化远程发布到Tomcat服务器

使用tomcat-maven-plugin插件自动化远程发布到Tomcat服务器

<!-- 配置自动发布Tomcat插件(tomcat:redeploy) -->
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>tomcat-maven-plugin</artifactId>
                <configuration>
                    <url>http://localhost:8080/manager/html</url>
                    <username>zhoulumin</username>
                    <password>19880627</password>
                    <path>/sshe</path>
                </configuration>
            </plugin>
View Code

 

posted @ 2014-08-09 14:27  心随梦飞[fosilzhou]  阅读(359)  评论(0编辑  收藏  举报