Skip to content

Commit 0a2fa68

Browse files
committed
Force the use of Junit 6 to match what Spring Boot uses
1 parent 9a70344 commit 0a2fa68

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,46 @@
484484
<artifactId>hamcrest</artifactId>
485485
<version>${hamcrest.version}</version>
486486
</dependency>
487+
<dependency>
488+
<groupId>org.junit.jupiter</groupId>
489+
<artifactId>junit-jupiter</artifactId>
490+
<version>${junit-jupiter.version}</version>
491+
</dependency>
492+
<dependency>
493+
<groupId>org.junit.jupiter</groupId>
494+
<artifactId>junit-jupiter-api</artifactId>
495+
<version>${junit-jupiter.version}</version>
496+
</dependency>
497+
<dependency>
498+
<groupId>org.junit.jupiter</groupId>
499+
<artifactId>junit-jupiter-engine</artifactId>
500+
<version>${junit-jupiter.version}</version>
501+
</dependency>
502+
<dependency>
503+
<groupId>org.junit.jupiter</groupId>
504+
<artifactId>junit-jupiter-params</artifactId>
505+
<version>${junit-jupiter.version}</version>
506+
</dependency>
507+
<dependency>
508+
<groupId>org.junit.vintage</groupId>
509+
<artifactId>junit-vintage-engine</artifactId>
510+
<version>${junit-vintage.version}</version>
511+
</dependency>
512+
<dependency>
513+
<groupId>org.junit.platform</groupId>
514+
<artifactId>junit-platform-commons</artifactId>
515+
<version>${junit-jupiter.version}</version>
516+
</dependency>
517+
<dependency>
518+
<groupId>org.junit.platform</groupId>
519+
<artifactId>junit-platform-engine</artifactId>
520+
<version>${junit-jupiter.version}</version>
521+
</dependency>
522+
<dependency>
523+
<groupId>org.junit.platform</groupId>
524+
<artifactId>junit-platform-launcher</artifactId>
525+
<version>${junit-jupiter.version}</version>
526+
</dependency>
487527
</dependencies>
488528
</dependencyManagement>
489529

0 commit comments

Comments
 (0)