Bug 559530: [Releng] Enable use JUnit 5 for Spring Boot applications
diff --git a/releng/spring.boot/pom.xml b/releng/spring.boot/pom.xml
index a69ee4a..07edda3 100644
--- a/releng/spring.boot/pom.xml
+++ b/releng/spring.boot/pom.xml
@@ -109,8 +109,13 @@
 			<scope>test</scope>
 		</dependency>
 		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
+			<groupId>org.junit.jupiter</groupId>
+			<artifactId>junit-jupiter-api</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.junit.jupiter</groupId>
+			<artifactId>junit-jupiter-engine</artifactId>
 			<scope>test</scope>
 		</dependency>
 	</dependencies>