diff options
author | YiLi <li.yi101@zte.com.cn> | 2018-02-09 09:53:54 +0800 |
---|---|---|
committer | YiLi <li.yi101@zte.com.cn> | 2018-02-09 10:37:19 +0800 |
commit | 37630177bc70661ce86cb12e9af34e8c09893f4d (patch) | |
tree | 83ccafe8389fd8fc504c628a67b3618ac8c222bf /holmes-actions/pom.xml | |
parent | a55c700bc3aaab61731d509e4f4c85f40d6330e6 (diff) |
Test Replace Jackson with GSON
Change-Id: Id4c2ed81e7dbd5546940ff50363555336d55b75b
Issue-ID: HOLMES-115
Signed-off-by: YiLi <li.yi101@zte.com.cn>
Diffstat (limited to 'holmes-actions/pom.xml')
-rw-r--r-- | holmes-actions/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/holmes-actions/pom.xml b/holmes-actions/pom.xml index 3a724d0..850a03a 100644 --- a/holmes-actions/pom.xml +++ b/holmes-actions/pom.xml @@ -22,6 +22,12 @@ <dependency>
<groupId>org.onap.msb.java-sdk</groupId>
<artifactId>msb-java-sdk</artifactId>
+ <!--<exclusions>-->
+ <!--<exclusion>-->
+ <!--<groupId>com.eclipsesource.jaxrs</groupId>-->
+ <!--<artifactId>jersey-all</artifactId>-->
+ <!--</exclusion>-->
+ <!--</exclusions>-->
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
@@ -38,6 +44,20 @@ <dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-yaml</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
|