3

我在我的 maven 2 项目 POM.xml 中集成了 Cargo 插件。

在热部署期间,我无法连接到可跨代理使用的 Tomcat 容器。我的 maven settings.xml 已经包含代理设置,但货物没有捡起它。

我尝试显式地为 Cargo 插件定义代理设置,但这也没有奏效。

我的 Cargo 插件 xml 如下:

<plugin>
     <groupId>org.codehaus.cargo</groupId>
     <artifactId>cargo-maven2-plugin</artifactId>
     <!--<version>1.0.1-alpha-1</version>-->
     <version>1.0-beta-1</version>
     <configuration>
      <container>
       <containerId>tomcat6x</containerId>
       <type>remote</type>
      </container>
      <configuration>
       <type>runtime</type>
       <properties>
        <cargo.proxy.host>xxx.xxx.xxx.xxx</cargo.proxy.host>
        <cargo.proxy.port>xxxx</cargo.proxy.port>
        <cargo.hostname>xxx.xxx.xxx.xxx</cargo.hostname>
        <cargo.protocol>http</cargo.protocol>
        <cargo.servlet.port>80</cargo.servlet.port>
        <cargo.tomcat.manager.url>http://xxx.xxx.xxx.xxx/manager</cargo.tomcat.manager.url>
        <cargo.remote.username>xxxxxxx</cargo.remote.username>
        <cargo.remote.password>xxxxxxx</cargo.remote.password>
       </properties>
      </configuration>
      <deployer>
       <type>remote</type>
       <deployables>
        <deployable>
         <groupId>Test</groupId>
         <artifactId>Test</artifactId>
         <type>war</type>
         <!--
          <properties> <context>optional root context</context>
          </properties> <pingURL>optional url to ping to know if deployable
          is done or not</pingURL> <pingTimeout>optional timeout to ping
          (default 20000 milliseconds)</pingTimeout>
         -->
        </deployable>
       </deployables>
      </deployer>
     </configuration>
    </plugin>

请帮忙。

提前致谢。

阿什什

4

2 回答 2

2

我可能错了,但我认为 Cargo 不支持这一点。但是,由于 Tomcat 的远程部署程序使用管理器应用程序,因此使用 HTTP,请尝试通过在调用 maven 时在命令行上传递属性来在 JVM 级别设置代理设置:

mvn cargo:deploy -Dhttp.proxyHost=<hostname> -Dhttp.proxyPort=<port>

或者使用环境变量MAVEN_OPTS

export MAVEN_OPTS="-Dhttp.proxyHost=<hostname> -Dhttp.proxyPort=<port>"
于 2009-10-09T11:33:11.120 回答
0

希望这个代理问题将在 Cargo 1.1.0 中修复

于 2011-03-04T08:35:51.100 回答