Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active March 2, 2016 18:00
Show Gist options
  • Save brunokrebs/cb0ebe5f7405ee4985aa to your computer and use it in GitHub Desktop.
Save brunokrebs/cb0ebe5f7405ee4985aa to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<executions>
<execution>
<id>integration-test</id>
<goals><goal>integration-test</goal></goals>
</execution>
<execution>
<id>verify</id>
<phase>verify</phase>
<goals><goal>verify</goal></goals>
</execution>
</executions>
</plugin>
<!-- spring-boot-maven-plugin plugin definition goes here -->
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment