summaryrefslogtreecommitdiffstats
path: root/holmes-actions/pom.xml
diff options
context:
space:
mode:
authorYiLi <li.yi101@zte.com.cn>2018-02-11 17:39:05 +0800
committerYiLi <li.yi101@zte.com.cn>2018-02-12 11:56:57 +0800
commit83307e37a264972f4f9c60a114f40a375e32634b (patch)
treeed6639132fb0a97d8853ded37e9faa9f6eab4e24 /holmes-actions/pom.xml
parentd4a991ad631f16831d380eef8e7405d9c2ea85c5 (diff)
Test Replace Jackson with GSON
Change-Id: I7ac92dd83a4bf7dcfb70199f1d0f61e600db8904 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.xml21
1 files changed, 15 insertions, 6 deletions
diff --git a/holmes-actions/pom.xml b/holmes-actions/pom.xml
index 850a03a..57f2eaa 100644
--- a/holmes-actions/pom.xml
+++ b/holmes-actions/pom.xml
@@ -22,12 +22,6 @@
<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>
@@ -57,11 +51,21 @@
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-xml</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
@@ -169,6 +173,11 @@
<artifactId>gson</artifactId>
<version>2.8.2</version>
</dependency>
+ <dependency>
+ <groupId>com.alibaba</groupId>
+ <artifactId>fastjson</artifactId>
+ <version>1.1.23</version>
+ </dependency>
</dependencies>
<build>