Skip to content

Commit

Permalink
Do not fail if no tests, so we can run mvn clean install -Dtest=false…
Browse files Browse the repository at this point in the history
… as quick-build.
  • Loading branch information
davsclaus committed Nov 12, 2013
1 parent 331a080 commit d3fdfdd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -390,6 +390,26 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin-version}</version>
<configuration>
<forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds>
<childDelegation>false</childDelegation>
<useFile>true</useFile>
<failIfNoTests>false</failIfNoTests>
<runOrder>alphabetical</runOrder>
<systemPropertyVariables>
<basedir>${basedir}</basedir>
<java.awt.headless>true</java.awt.headless>
</systemPropertyVariables>
<includes>
<include>**/*Test.*</include>
</includes>
</configuration>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit d3fdfdd

Please sign in to comment.