Skip to content

Commit 329d737

Browse files
committed
Add JUnit5 Jupiter dependencies and Maven surefire plugin to pom.xml
1 parent cb8fd0c commit 329d737

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,20 @@
3939
<groupId>org.springframework.boot</groupId>
4040
<artifactId>spring-boot-starter-test</artifactId>
4141
<scope>test</scope>
42+
43+
<exclusions>
44+
<exclusion>
45+
<groupId>junit</groupId>
46+
<artifactId>junit</artifactId>
47+
</exclusion>
48+
</exclusions>
49+
</dependency>
50+
51+
<dependency>
52+
<groupId>org.junit.jupiter</groupId>
53+
<artifactId>junit-jupiter-api</artifactId>
54+
<version>5.5.2</version>
55+
<scope>test</scope>
4256
</dependency>
4357
</dependencies>
4458

@@ -48,6 +62,11 @@
4862
<groupId>org.springframework.boot</groupId>
4963
<artifactId>spring-boot-maven-plugin</artifactId>
5064
</plugin>
65+
66+
<plugin>
67+
<artifactId>maven-surefire-plugin</artifactId>
68+
<version>3.0.0-M3</version>
69+
</plugin>
5170
</plugins>
5271
</build>
5372

0 commit comments

Comments
 (0)