gpt4 book ai didi

maven - 无法使用 cargo-maven-plugin 重新部署到远程 tomcat 7

转载 作者:行者123 更新时间:2023-12-04 22:50:43 30 4
gpt4 key购买 nike

我正在尝试使用 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,这样更容易阅读。 Error link .非常感谢您对此的任何帮助。

最佳答案

对于任何想知道答案的人。看看for a caveat with tomcat 7.

你可以使用这样的东西。

<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.username>devuser</cargo.remote.username>
<cargo.remote.password>86gphpphp</cargo.remote.password>
<cargo.remote.uri>http://192.168.2.116:8080/manager/text</cargo.remote.uri>
</properties>
<deployables>
<deployable>
<groupId>com.fiobox</groupId>
<artifactId>fiobox</artifactId>
<type>war</type>
</deployable>
</deployables>
</configuration>
</configuration>
</plugin>

关于maven - 无法使用 cargo-maven-plugin 重新部署到远程 tomcat 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6436351/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com