Skip to content

Instantly share code, notes, and snippets.

@bondolo
Created October 8, 2020 23:29
Show Gist options
  • Save bondolo/de8274867147509eeef510e8bfc65925 to your computer and use it in GitHub Desktop.
Save bondolo/de8274867147509eeef510e8bfc65925 to your computer and use it in GitHub Desktop.
Add default execution of integration tests
<!-- enable default execution of integration (*IT.java) tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment