Skip to content

Commit 54199cd

Browse files
author
Vladimir Kotal
committed
move executions to build
1 parent e7d19de commit 54199cd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,22 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
159159
<version>3.6.1</version>
160160
</plugin>
161161
<plugin>
162+
<!-- UNIT TEST RUNNER -->
162163
<groupId>org.apache.maven.plugins</groupId>
163164
<artifactId>maven-surefire-plugin</artifactId>
164165
<configuration>
165166
<forkCount>1</forkCount>
166167
<reuseForks>false</reuseForks>
167168
</configuration>
168169
<version>2.20</version>
170+
<executions>
171+
<execution>
172+
<id>run-unit-tests</id>
173+
<goals>
174+
<goal>test</goal>
175+
</goals>
176+
</execution>
177+
</executions>
169178
</plugin>
170179
<plugin>
171180
<groupId>org.jacoco</groupId>
@@ -277,21 +286,12 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
277286
</reportSets>
278287
</plugin>
279288
<plugin>
280-
<!-- UNIT TEST RUNNER -->
281289
<groupId>org.apache.maven.plugins</groupId>
282290
<artifactId>maven-surefire-report-plugin</artifactId>
283291
<version>2.20</version>
284292
<configuration>
285293
<argLine>${surefireArgLine}</argLine>
286294
</configuration>
287-
<executions>
288-
<execution>
289-
<id>run-unit-tests</id>
290-
<goals>
291-
<goal>test</goal>
292-
</goals>
293-
</execution>
294-
</executions>
295295
</plugin>
296296
<!-- CODE COVERAGE PUBLISHER -->
297297
<plugin>

0 commit comments

Comments
 (0)