Last active
March 2, 2016 18:00
-
-
Save brunokrebs/cb0ebe5f7405ee4985aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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