Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created October 16, 2011 14:24
Show Gist options
  • Save eugenp/1290921 to your computer and use it in GitHub Desktop.
Save eugenp/1290921 to your computer and use it in GitHub Desktop.
How to run integration tests with the Maven cargo plugin - maven-surefire-plugin main configuration
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.10</version>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
</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