Skip to content

Commit fd0920e

Browse files
committed
changed pom.xml for executing unit tests in parallel
1 parent 719f312 commit fd0920e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,24 @@
131131
<encoding>UTF-8</encoding>
132132
</configuration>
133133
</plugin>
134+
<!--
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-surefire-plugin</artifactId>
138+
<version>2.13</version>
139+
<configuration>
140+
<parallel>methods</parallel>
141+
<threadCount>10</threadCount>
142+
</configuration>
143+
<dependencies>
144+
<dependency>
145+
<groupId>org.apache.maven.surefire</groupId>
146+
<artifactId>surefire-junit47</artifactId>
147+
<version>2.13</version>
148+
</dependency>
149+
</dependencies>
150+
</plugin>
151+
-->
134152
<plugin>
135153
<groupId>org.apache.maven.plugins</groupId>
136154
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)