diff options
Diffstat (limited to 'services/pom.xml')
-rw-r--r-- | services/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/services/pom.xml b/services/pom.xml index d7e60f83..004e55e0 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -39,6 +39,12 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-logging</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> @@ -97,6 +103,10 @@ <artifactId>javax.ws.rs-api</artifactId> </dependency> <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + </dependency> + <dependency> <groupId>org.onap.ccsdk.sli.core</groupId> <artifactId>sliPluginUtils-provider</artifactId> <version>${ccsdk.sli.core.version}</version> @@ -116,6 +126,11 @@ <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> |