Added parallel profile.

It works sometimes, but fails miserably other times.
This commit is contained in:
Kristian Rosenvold 2014-01-04 20:10:16 +01:00
parent fdfefac4b1
commit aa9ac3093b
2 changed files with 16 additions and 1 deletions

View File

@ -178,6 +178,21 @@ under the License.
</build>
<profiles>
<profile>
<id>parallel</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<parallel>classes</parallel>
<threadCount>6</threadCount>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>run-its</id>
<build>