Remove powermock dependency from rest-client 42/137642/1
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Thu, 4 Apr 2024 07:44:11 +0000 (09:44 +0200)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Thu, 4 Apr 2024 07:44:11 +0000 (09:44 +0200)
- replace powermock with junit

Issue-ID: AAI-3816
Change-Id: I7f28d0998d7123b137a7eff67fe164ac07a63384
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
pom.xml

diff --git a/pom.xml b/pom.xml
index 4f8b29f..7688640 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 
         <dependency>
             <groupId>org.mockito</groupId>
-            <artifactId>mockito-all</artifactId>
+            <artifactId>mockito-core</artifactId>
             <scope>test</scope>
         </dependency>
 
         <dependency>
-            <groupId>org.powermock</groupId>
-            <artifactId>powermock-module-junit4</artifactId>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.powermock</groupId>
-            <artifactId>powermock-api-mockito</artifactId>
-            <version>1.6.2</version>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.powermock</groupId>
-            <artifactId>powermock-module-javaagent</artifactId>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.powermock</groupId>
-            <artifactId>powermock-module-junit4-rule-agent</artifactId>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>