@@ -271,9 +271,9 @@ following.
271271 </plugin>
272272 </plugins>
273273 </build>
274- ...
274+ <!-- ... -->
275275 <dependencies>
276- ...
276+ <!-- ... -->
277277 <dependency>
278278 <groupId>org.junit.jupiter</groupId>
279279 <artifactId>junit-jupiter-api</artifactId>
@@ -286,9 +286,9 @@ following.
286286 <version>{jupiter-version}</version>
287287 <scope>test</scope>
288288 </dependency>
289- ...
289+ <!-- ... -->
290290 </dependencies>
291- ...
291+ <!-- ... -->
292292----
293293
294294Maven Surefire and Maven Failsafe can run JUnit 4 based tests alongside Jupiter tests as
@@ -298,7 +298,7 @@ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintag
298298[source,xml,indent=0]
299299[subs=attributes+]
300300----
301- ...
301+ <!-- ... -->
302302 <build>
303303 <plugins>
304304 <plugin>
@@ -311,9 +311,9 @@ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintag
311311 </plugin>
312312 </plugins>
313313 </build>
314- ...
314+ <!-- ... -->
315315 <dependencies>
316- ...
316+ <!-- ... -->
317317 <dependency>
318318 <groupId>junit</groupId>
319319 <artifactId>junit</artifactId>
@@ -326,9 +326,9 @@ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintag
326326 <version>{vintage-version}</version>
327327 <scope>test</scope>
328328 </dependency>
329- ...
329+ <!-- ... -->
330330 </dependencies>
331- ...
331+ <!-- ... -->
332332----
333333
334334[[running-tests-build-maven-filter-test-class-names]]
@@ -352,7 +352,7 @@ from excluding static member classes, you can override its exclude rules as foll
352352[subs=attributes+]
353353.Overriding exclude rules of Maven Surefire
354354----
355- ...
355+ <!-- ... -->
356356 <build>
357357 <plugins>
358358 <plugin>
@@ -366,7 +366,7 @@ from excluding static member classes, you can override its exclude rules as foll
366366 </plugin>
367367 </plugins>
368368 </build>
369- ...
369+ <!-- ... -->
370370----
371371
372372Please see the
@@ -385,7 +385,7 @@ the following configuration properties.
385385[source,xml,indent=0]
386386[subs=attributes+]
387387----
388- ...
388+ <!-- ... -->
389389 <build>
390390 <plugins>
391391 <plugin>
@@ -398,7 +398,7 @@ the following configuration properties.
398398 </plugin>
399399 </plugins>
400400 </build>
401- ...
401+ <!-- ... -->
402402----
403403
404404[[running-tests-build-maven-config-params]]
@@ -412,7 +412,7 @@ below) or via the `junit-platform.properties` file.
412412[source,xml,indent=0]
413413[subs=attributes+]
414414----
415- ...
415+ <!-- ... -->
416416 <build>
417417 <plugins>
418418 <plugin>
@@ -430,7 +430,7 @@ below) or via the `junit-platform.properties` file.
430430 </plugin>
431431 </plugins>
432432 </build>
433- ...
433+ <!-- ... -->
434434----
435435
436436[[running-tests-build-ant]]
@@ -491,7 +491,7 @@ test classes from multiple locations.
491491 <!-- The location where you have your compiled classes -->
492492 <pathelement location="${build.classes.dir}" />
493493 </path>
494- ....
494+ <!-- ... -->
495495 <junitlauncher>
496496 <classpath refid="test.classpath" />
497497 <testclasses outputdir="${output.dir}">
0 commit comments