diff options
author | Kailun Qin <kailun.qin@intel.com> | 2018-08-31 17:59:36 +0800 |
---|---|---|
committer | Kailun Qin <kailun.qin@intel.com> | 2018-08-31 18:00:46 +0800 |
commit | 28780105f9e027c1b9f9653930cbbefeb598821a (patch) | |
tree | 50253cf452bab18c2a12a0a0a171a27eef9daa13 | |
parent | aa0da758ab353be28fe165934a09e8fd5a62620d (diff) |
Exclude jackson-dataformat-xml for security
Change-Id: I6e687853ba001e43d87edd843b1604c2a5633c20
Issue-ID: VNFSDK-302
Signed-off-by: Kailun Qin <kailun.qin@intel.com>
-rw-r--r-- | vnf-sdk-function-test/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vnf-sdk-function-test/pom.xml b/vnf-sdk-function-test/pom.xml index ebae15c..62af988 100644 --- a/vnf-sdk-function-test/pom.xml +++ b/vnf-sdk-function-test/pom.xml @@ -152,6 +152,12 @@ <groupId>io.swagger</groupId> <artifactId>swagger-jersey2-jaxrs</artifactId> <version>1.5.3</version> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-xml</artifactId> + </exclusion> + </exclusions> </dependency> <!-- jersey --> <dependency> |