Skip to content

Commit fdf7796

Browse files
committed
pom.xml: Add JUnit 5 dependencies
1 parent bd9b92a commit fdf7796

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,23 @@
5757
</dependency>
5858

5959
<dependency>
60-
<groupId>org.junit.vintage</groupId>
61-
<artifactId>junit-vintage-engine</artifactId>
60+
<groupId>org.junit.jupiter</groupId>
61+
<artifactId>junit-jupiter-api</artifactId>
6262
<version>5.11.3</version>
6363
<scope>test</scope>
6464
</dependency>
65+
<dependency>
66+
<groupId>org.junit.jupiter</groupId>
67+
<artifactId>junit-jupiter-engine</artifactId>
68+
<version>5.11.3</version>
69+
<scope>test</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.junit.platform</groupId>
73+
<artifactId>junit-platform-launcher</artifactId>
74+
<version>1.11.3</version>
75+
<scope>test</scope>
76+
</dependency>
6577
</dependencies>
6678

6779
<build>

0 commit comments

Comments
 (0)