I am running the Maven 3.1.0 Surefire plugin already with the --quiet
option, however it still prints out the results of unit tests out to the
Try setting the surefire.printSummary
property to false
: this should only print the test cases that have errors. So try running it as mvn -q -Dsurefire.printSummary=false
.
Alternatively, you can put it in your pom.xml:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<printSummary>false</printSummary>
</configuration>
</plugin>