...
| No Format |
|---|
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<reportFormat>brief</reportFormat>
<useFile>false</useFile>
</configuration>
</plugin>
|
Or to set the properties without configuring the plugin use global property names:
| No Format |
|---|
<properties>
<surefire.useFile>false</surefire.useFile>
</properties>
|
if you want to set the reportFormat it's global property name is surefire.reportFormat
How to skip all tests by default
...
