Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Created March 2, 2016 18:05
Show Gist options
  • Save brunokrebs/630a6deb0d87bc13b116 to your computer and use it in GitHub Desktop.
Save brunokrebs/630a6deb0d87bc13b116 to your computer and use it in GitHub Desktop.
<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