Skip to content

Instantly share code, notes, and snippets.

@mihaiparv
Created November 13, 2015 07:05
Show Gist options
  • Save mihaiparv/43071ac90d12f5b5e524 to your computer and use it in GitHub Desktop.
Save mihaiparv/43071ac90d12f5b5e524 to your computer and use it in GitHub Desktop.
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment