diff options
author | wasala <przemyslaw.wasala@nokia.com> | 2018-04-18 08:48:00 +0200 |
---|---|---|
committer | wasala <przemyslaw.wasala@nokia.com> | 2018-04-18 08:48:00 +0200 |
commit | b3a974ed7dccb1fc29b8bef2a1112bb78abe3197 (patch) | |
tree | 3edca5d854785754c5e6a15774ce6b02a9469d18 /prh-app-server/pom.xml | |
parent | b196f93758edabf10174da160e8b74e7eec8ef72 (diff) |
Exluded jackson library from prh-app-server
Change-Id: I3856e2c5f661e8355e6af88f85b38b443cbc4ece
Issue-ID: DCAEGEN2-426
Signed-off-by: wasala <przemyslaw.wasala@nokia.com>
Diffstat (limited to 'prh-app-server/pom.xml')
-rw-r--r-- | prh-app-server/pom.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml index e5f2c8c4..f178d343 100644 --- a/prh-app-server/pom.xml +++ b/prh-app-server/pom.xml @@ -109,8 +109,8 @@ <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> - <artifactId>jackson-databind</artifactId> - <groupId>com.fasterxml.jackson.core</groupId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-json</artifactId> </exclusion> </exclusions> </dependency> @@ -119,14 +119,20 @@ <artifactId>spring-boot-starter-webflux</artifactId> <exclusions> <exclusion> - <artifactId>jackson-databind</artifactId> - <groupId>com.fasterxml.jackson.core</groupId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-json</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.bouncycastle</groupId> @@ -227,12 +233,6 @@ <version>2.0.1.RELEASE</version> <type>pom</type> <scope>import</scope> - <exclusions> - <exclusion> - <artifactId>jackson-databind</artifactId> - <groupId>com.fasterxml.jackson.core</groupId> - </exclusion> - </exclusions> </dependency> </dependencies> </dependencyManagement> |