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>
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<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>
|
<profile>
|
||||||
<id>run-its</id>
|
<id>run-its</id>
|
||||||
<build>
|
<build>
|
||||||
|
|
Loading…
Reference in New Issue