Created
March 2, 2016 18:05
-
-
Save brunokrebs/630a6deb0d87bc13b116 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> | |
<!-- maven-failsafe-plugin plugin definition goes here --> | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>pre-integration-test</id> | |
<goals><goal>start</goal></goals> | |
</execution> | |
<execution> | |
<id>post-integration-test</id> | |
<goals><goal>stop</goal></goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment