Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created October 16, 2011 17:37
Show Gist options
  • Save eugenp/1291176 to your computer and use it in GitHub Desktop.
Save eugenp/1291176 to your computer and use it in GitHub Desktop.
How to run integration tests with the Maven cargo plugin - cargo-maven2-plugin base configuration
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.3</version>
<configuration>
<wait>true</wait>
<container>
<containerId>jetty7x</containerId>
<type>embedded</type>
</container>
<configuration>
<properties>
<cargo.servlet.port>8080</cargo.servlet.port>
</properties>
</configuration>
</configuration>
</plugin>
@eugenp
Copy link
Author

eugenp commented Feb 14, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment