Fixes bug: Tests did not run because of  maven-surefire-plugin configuration

Change-Id: I703861b63fdac76bb437962c14cdc2cc0f42f57d
diff --git a/pom.xml b/pom.xml
index ab3667d..a8e1edd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,13 +24,6 @@
     </dependency>
 
     <dependency>
-      <groupId>org.apache.maven.plugins</groupId>
-      <artifactId>maven-surefire-plugin</artifactId>
-      <version>3.0.0-M5</version>
-      <type>maven-plugin</type>
-    </dependency>
-    
-    <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-databind</artifactId>
       <version>2.17.1</version>
@@ -230,14 +223,23 @@
           </execution>
         </executions>
       </plugin>
+      
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <version>3.0.0-M5</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.surefire</groupId>
+            <artifactId>surefire-junit4</artifactId>
+            <version>3.0.0-M5</version>
+          </dependency>
+        </dependencies>
         <configuration>
           <argLine>-Dfile.encoding=UTF-8</argLine>
         </configuration>
       </plugin>
     </plugins>
+  
   </build>
 </project>