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>
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
# How I run the ITs from a clean slate. Though I do this with a primed Nexus instance. JvZ.
|
# How I run the ITs from a clean slate. Though I do this with a primed Nexus instance. JvZ.
|
||||||
|
|
||||||
mvn clean install -Prun-its,embedded -Dmaven.repo.local=`pwd`/repo
|
mvn clean install -Prun-its,embedded -Dmaven.repo.local=`pwd`/repo
|
||||||
|
|
Loading…
Reference in New Issue