使用货物maven插件将spring项目部署到远程服务器

时间:2017-05-03 12:08:38

标签: java spring eclipse maven tomcat

我正在使用eclipse进行开发。我试图使用货物插件部署到远程服务器,但我收到了一个错误。我正在使用EC2作为我的服务器,使用tomcat 8.当我尝试运行或调试时,我使用了cargo:deploy

这是我的错误

Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.6.3:deploy (default-cli) on project travelplanner: Execution default-cli of goal org.codehaus.cargo:cargo-maven2-plugin:1.6.3:deploy failed: Failed to create deployable with implementation class org.codehaus.cargo.container.tomcat.TomcatWAR for the parameters (container [id = [tomcat8x]], deployable type [war]). InvocationTargetException: Failed to parse Tomcat WAR file in [my workingspace\travelplanner-1.0.0-BUILD-SNAPSHOT.war]: Failed to find file [my workingspace\travelplanner-1.0.0-BUILD-SNAPSHOT.war]: my workingspace\travelplanner-1.0.0-BUILD-SNAPSHOT.war -> [Help 1] [ERROR]

这是我的pom.xml

<build>
    <plugins>
        <plugin>
            <artifactId>maven-eclipse-plugin</artifactId>
            <version>2.9</version>
            <configuration>
                <additionalProjectnatures>
                    <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                </additionalProjectnatures>
                <additionalBuildcommands>
                    <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                </additionalBuildcommands>
                <downloadSources>true</downloadSources>
                <downloadJavadocs>true</downloadJavadocs>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.5.1</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <compilerArgument>-Xlint:all</compilerArgument>
                <showWarnings>true</showWarnings>
                <showDeprecation>true</showDeprecation>
            </configuration>
        </plugin>
        <plugin>
        <groupId>org.codehaus.cargo</groupId>
        <artifactId>cargo-maven2-plugin</artifactId>
        <version>1.6.3</version>
        <configuration>
            <container>
                <containerId>tomcat8x</containerId>
                <type>remote</type>
            </container>
            <configuration>
                <type>runtime</type>
                <properties>
                    <cargo.hostname>myIPaddress</cargo.hostname>
                    <cargo.remote.username>myId</cargo.remote.username>
                    <cargo.remote.password>myPassword</cargo.remote.password>
                    <cargo.tomcat.manager.url>http://myIpAddress:8080/manager/text
                    </cargo.tomcat.manager.url>
                </properties>
            </configuration>
            <deployables>
                    <deployable>
                        <groupId>com.rosem</groupId>
                        <artifactId>travelplanner</artifactId>
                        <type>war</type>
                    </deployable>
                </deployables>
        </configuration>
   </plugin>

    </plugins>
</build>

1 个答案:

答案 0 :(得分:0)

您需要指定可以找到war文件的位置。在插件配置中检查可部署标记下的位置标记。

相关问题