mirror of https://github.com/apache/maven.git
Added parallel profile.
It works sometimes, but fails miserably other times.
This commit is contained in:
parent
fdfefac4b1
commit
aa9ac3093b
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue