diff options
author | Shiwei Tian <tian.shiwei@zte.com.cn> | 2018-03-20 15:11:32 +0800 |
---|---|---|
committer | Shiwei Tian <tian.shiwei@zte.com.cn> | 2018-03-20 15:11:32 +0800 |
commit | 56acc55bf479d8b7a635fc91cecc9bcc9775bc59 (patch) | |
tree | 14f2da0ec1f510121b88fb660f0552b03e0d82db /engine-d | |
parent | daa5c04c40fda44ddd4f4184f233c74b335cc343 (diff) |
Fix the Sonar Findings
Issue-ID: HOLMES-121
Change-Id: If2b85293d63e689ad24f4e48cc66844f5edb3dbf
Signed-off-by: Shiwei Tian <tian.shiwei@zte.com.cn>
Diffstat (limited to 'engine-d')
-rw-r--r-- | engine-d/pom.xml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/engine-d/pom.xml b/engine-d/pom.xml index 3d06046..b0a1b62 100644 --- a/engine-d/pom.xml +++ b/engine-d/pom.xml @@ -40,6 +40,11 @@ <version>1.2.3</version> </dependency> <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-validator</artifactId> + <version>5.4.2.Final</version> + </dependency> + <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.7.0</version> @@ -81,6 +86,10 @@ <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -117,6 +126,10 @@ <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet-core</artifactId> </exclusion> + <exclusion> + <groupId>io.swagger</groupId> + <artifactId>swagger-jersey2-jaxrs</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -182,9 +195,16 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> + <exclusion> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-validator</artifactId> + </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> - <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> @@ -226,6 +246,10 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> <dependency> |