I have the following in my pom.xml
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<wait>true</wait>
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<configuration>
<type>remote</type>
<properties>
<cargo.tomcat.manager.url>http://<myhost>:8080/manager</cargo.tomcat.manager.url>
<cargo.remote.username>admin</cargo.remote.username>
<cargo.remote.password>password</cargo.remote.password>
</properties>
</configuration>
<deployer>
<type>installed</type>
<deployables>
<deployable>
<groupId>com.mycode</groupId>
<artifactId>myartifact</artifactId>
<type>war</type>
</deployable>
</deployables>
</deployer>
</configuration>
<executions>
<execution>
<id>start-container</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deployer-deploy</goal>
</goals>
</execution>
<execution>
<id>stop-container</id>
<phase>post-integration-test</phase>
<goals>
<goal>deployer-undeploy</goal>
</goals>
</execution>
<execution>
<id>verify-deploy</id>
<phase>install</phase>
<goals>
<goal>deployer-deploy</goal>
</goals>
</execution>
<execution>
<id>clean-undeploy</id>
<phase>pre-clean</phase>
<goals>
<goal>deployer-undeploy</goal>
</goals>
</execution>
</executions>
</plugin>
After this I issue command mvn deploy however I get the error below:
[ERROR] Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.3.1:deployer-deploy (start-container) on project fismacm: Execution start-container of goal org.codehaus.cargo:cargo-maven2-plugin:1.3.1:deployer-deploy failed: Cannot create configuration. There's no registered configuration for the parameters (container [id = [tomcat6x], type = [remote]], configuration type [remote]). Valid types for this configuration are:
I can successfully access http://<myhost>:8080/manager from my browser. Version of tomcat I'm running is 7.
<deployables>tag inside<deployer>does not seem right. The<deployables>is a top level configuration element according to the Reference Guide. – maba Nov 14 '12 at 19:36<type>remote</type>is not an allowed type in that section. It should bestandalone,existingorruntime. This is also according to the Reference Guide. – maba Nov 14 '12 at 19:38