diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-03-28 11:22:01 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-03-28 11:22:01 +0800 |
commit | 879a7b02ae4c592b4f9dd98c1d5a7793749bc8b2 (patch) | |
tree | 614a45ba212224d13da49f80b188a80a9cbf755f | |
parent | 580d4ce637b1c09b3bd2258b0b9c8332b8789bad (diff) |
Excluded Some Dependencies to Fix Nexus Issues
Change-Id: I2a36edfbc14e1bab784ec614f7b8b00ea51f47ba
Issue-ID: HOLMES-123
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
-rw-r--r-- | pom.xml | 5 | ||||
-rw-r--r-- | rulemgt/pom.xml | 17 |
2 files changed, 13 insertions, 9 deletions
@@ -99,6 +99,11 @@ <version>${dropwizard.version}</version>
</dependency>
<dependency>
+ <groupId>io.dropwizard</groupId>
+ <artifactId>dropwizard-jdbi</artifactId>
+ <version>${dropwizard.version}</version>
+ </dependency>
+ <dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
<version>${swagger.version}</version>
diff --git a/rulemgt/pom.xml b/rulemgt/pom.xml index 7bb2b48..1177075 100644 --- a/rulemgt/pom.xml +++ b/rulemgt/pom.xml @@ -61,14 +61,6 @@ <artifactId>holmes-actions</artifactId> <exclusions> <exclusion> - <groupId>io.dropwizard</groupId> - <artifactId>dropwizard-db</artifactId> - </exclusion> - <exclusion> - <groupId>io.dropwizard</groupId> - <artifactId>dropwizard-core</artifactId> - </exclusion> - <exclusion> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet-core</artifactId> </exclusion> @@ -112,7 +104,10 @@ </exclusion> </exclusions> </dependency> - + <dependency> + <groupId>io.dropwizard</groupId> + <artifactId>dropwizard-jdbi</artifactId> + </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> @@ -153,6 +148,10 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-dataformat-xml</artifactId> + </exclusion> </exclusions> <scope>provided</scope> </dependency> |