Refactoring JUNIT and MOCKITO 45/102345/1
authorSingal, Kapil (ks220y) <ks220y@att.com>
Tue, 25 Feb 2020 20:35:53 +0000 (15:35 -0500)
committerSingal, Kapil (ks220y) <ks220y@att.com>
Tue, 25 Feb 2020 20:35:53 +0000 (15:35 -0500)
Changing Version junit -> 4.12 and Mockito-core -> 2.23.4

Issue-ID: LOG-1205
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: I53e20c6c1154e97eb5d481ddaf30f626c166a294

reference/logging-demo/pom.xml
reference/logging-filter/logging-filter-base/pom.xml
reference/logging-filter/logging-filter-spring/pom.xml
reference/logging-filter/pom.xml
reference/logging-slf4j-demo/pom.xml
reference/pom.xml

index c393c71..fedb0ce 100644 (file)
       <version>1.6.4</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.12</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 
   <build>
index fe7e0a0..8df8510 100644 (file)
       <artifactId>log4j-slf4j-impl</artifactId>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
     <dependency>
       <groupId>org.glassfish.jersey.core</groupId>
       <artifactId>jersey-client</artifactId>
       <version>2.10.0</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.mockito</groupId>
-      <artifactId>mockito-core</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>
index 40e14de..f203797 100644 (file)
       <artifactId>log4j-slf4j-impl</artifactId>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
     <dependency>
       <groupId>org.glassfish.jersey.core</groupId>
       <artifactId>jersey-client</artifactId>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.mockito</groupId>
-      <artifactId>mockito-core</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
 </project>
index f008433..9c01ce9 100644 (file)
         <version>2.11.2</version>
         <scope>test</scope>
       </dependency>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>4.11</version>
-        <scope>test</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.mockito</groupId>
-        <artifactId>mockito-core</artifactId>
-        <version>2.15.0</version>
-        <scope>test</scope>
-      </dependency>
     </dependencies>
   </dependencyManagement>
 
index 900bf2e..455d9dc 100644 (file)
   <build>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-war-plugin</artifactId>
+        <version>3.2.3</version>
         <configuration />
       </plugin>
       <plugin>
index d579bc1..9ebf029 100644 (file)
       <version>4.12</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <version>2.23.4</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>