Skip to content

Instantly share code, notes, and snippets.

@kpiwko
Created July 1, 2011 10:56
Show Gist options
  • Select an option

  • Save kpiwko/1058300 to your computer and use it in GitHub Desktop.

Select an option

Save kpiwko/1058300 to your computer and use it in GitHub Desktop.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>default-test</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports/mailreader</reportsDirectory>
</configuration>
</execution>
<execution>
<id>scripting-mailreader</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports/scripting-mailreader</reportsDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment