Skip to content

Instantly share code, notes, and snippets.

@pierrefevrier
Created January 21, 2017 14:26
Show Gist options
  • Save pierrefevrier/c75fe73440b76356125ffcc5a520b4f5 to your computer and use it in GitHub Desktop.
Save pierrefevrier/c75fe73440b76356125ffcc5a520b4f5 to your computer and use it in GitHub Desktop.
Spring Boot Custom Surefire conf
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
<include>**/Test*.java</include>
<include>**/TU*.java</include>
<include>**/TI*.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment