我正在尝试使用 cargo-maven 插件构建并重新部署到远程 tomcat 7 服务器。我已经能够成功部署到远程服务器,但是所有其他操作都失败了。
这是我的 pom.xml 中的插件设置
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<!-- Container configuration -->
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.username>tomcat</cargo.remote.username>
<cargo.remote.password>tomcat</cargo.remote.password>
<cargo.remote.uri>http://devserver:8080/manager/html</cargo.remote.uri>
</properties>
</configuration>
</configuration>
</plugin>
这是我在尝试部署时在 Eclipse 中看到的错误。我将它发布到 pastebin 以便更容易阅读。错误链接。对此的任何帮助将不胜感激。