Невозможно перенести на удаленный tomcat 7 с помощью cargo-maven-plugin - PullRequest
4 голосов
/ 22 июня 2011

Я пытаюсь собрать и перенести на удаленный сервер tomcat 7 с помощью плагина Cargo-Maven Мне удалось успешно развернуть на удаленном сервере, но все остальные действия не удаются.

Вот настройки подключения в моем 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>

Это ошибка, которую я вижу в затмении, когда пытаюсь развернуться. Я отправил это в pastebin, чтобы его было легче читать. Ошибка ссылки . Любая помощь в этом с благодарностью.

1 Ответ

10 голосов
/ 29 июня 2011

Для тех, кто хочет знать ответ на этот вопрос.Посмотрите на предостережение с 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>
...