Rationalize maven dependencies
[sdc.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index c571cde..fb28bbc 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -195,12 +195,6 @@ Modifications copyright (c) 2018-2019 Nokia
         <version>${assertj.version}</version>
       </dependency>
 
-      <dependency>
-        <groupId>org.mockito</groupId>
-        <artifactId>mockito-core</artifactId>
-        <version>${mockito.version}</version>
-      </dependency>
-
       <dependency>
         <groupId>org.jmockit</groupId>
         <artifactId>jmockit</artifactId>
@@ -257,6 +251,27 @@ Modifications copyright (c) 2018-2019 Nokia
       <version>${jacoco.version}</version>
       <scope>test</scope>
     </dependency>
+    <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
+    <dependency>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter-engine</artifactId>
+      <version>${junitJupiter.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
+    <dependency>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
+      <version>${junitJupiter.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>${mockito.version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <reporting>