diff options
Diffstat (limited to 'cmso-service/pom.xml')
-rw-r--r-- | cmso-service/pom.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cmso-service/pom.xml b/cmso-service/pom.xml index 160deb7..5317b98 100644 --- a/cmso-service/pom.xml +++ b/cmso-service/pom.xml @@ -140,6 +140,12 @@ <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
@@ -194,6 +200,25 @@ <groupId>com.att.eelf</groupId>
<artifactId>eelf-core</artifactId>
<version>${eelf.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-module</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-mockito</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-module-junit4</artifactId>
+ </exclusion>
+
+ </exclusions>
</dependency>
<!-- <dependency>
<groupId>org.onap.aaf.authz</groupId>
|