Cargo 远程部署 tomcat7x

Cargo 远程部署  tomcat7x   和以前的版本部署略有不同。

< cargo.remote.manager.url>改成了< cargo.remote.url>并且路径里 manager 后面加了 /text

正确的配置如下:

<plugin>           
    <groupId >org.codehaus.cargo </groupId>
    <artifactId >cargo-maven2-plugin</ artifactId>
    <version >1.4.3 </version>
    <configuration >
        <container >
           <containerId >tomcat7x </containerId>
           <type >remote </type>
        </container>
        <configuration >
           <type >runtime </type>
           <properties >
                < cargo.remote.username>xxxx</cargo.remote.username >
                < cargo.remote.password>xxxx</cargo.remote.password >
                < cargo.remote.uri>http://115.28.55.22:8080/manager/text</cargo.remote.uri>
           </properties>
        </configuration>
    </configuration>
</plugin>

部署命令:cargo:redeploy 


你可能感兴趣的:(Cargo 远程部署 tomcat7x)