通过Cargo maven插件在远程项目部署

时间:2013-08-19 11:59:56

标签: java maven servlets deployment cargo

我正在尝试使用cargo插件部署servlet项目。

pom.xml文件:

...
<!-- cargo plugin  -->
      <plugin>
        <groupId>org.codehaus.cargo</groupId>
        <artifactId>cargo-maven2-plugin</artifactId>
        <configuration>
            <container>
                <containerId>tomcat6x</containerId>
                <type>remote</type>
                <systemProperties>
                    <cargo.jvmargs>-XX:MaxPermSize=256M -Xmx1024m</cargo.jvmargs>
                </systemProperties>
            </container>
            <configuration>
                <type>runtime</type>
                <properties>
                    <cargo.hostname>example.com</cargo.hostname>
                    <cargo.protocol>http</cargo.protocol>
                    <cargo.servlet.port></cargo.servlet.port>
                    <cargo.remote.username>verticals-renderer</cargo.remote.username>
                    <cargo.remote.password>verticals-renderer</cargo.remote.password>
                </properties>
            </configuration>
                <deployables>
                    <deployable>
                        <groupId>com.foo.foo</groupId>
                        <artifactId>foo-renderer</artifactId>
                        <type>war</type>
                        <properties>
                            <context>latest</context>
                        </properties>
                    </deployable>
                </deployables>

        </configuration>
    </plugin>
    <!-- End cargo plugin -->
...

如您所见,我想在远程domain上部署项目,例如; example.com但是当我运行mvn cargo:doploy时,我得到了:

Connection timed out

那是因为它试图将项目部署到:

http://example.com:/manager

知道如何从网址中删除冒号(:)?

1 个答案:

答案 0 :(得分:0)

如果从配置属性中删除cargo.servlet.port会发生什么?我相信您网址中的空端口将会消失。