diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2019-05-16 10:36:01 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2019-05-16 10:36:01 +0800 |
commit | 8b9dd901560ecf330da22c782ff7376740f5012c (patch) | |
tree | 09eea3a85a3577428954d5d4e130bfd56d564d04 | |
parent | dff3e4509262f7a609c5d3356e2212cf2c7646b3 (diff) |
Fixed some vulnerability issues
Change-Id: I962e3576ed9392f2b6a170e3cd760596826b0585
Issue-ID: HOLMES-225
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
-rw-r--r-- | rulemgt-standalone/pom.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/rulemgt-standalone/pom.xml b/rulemgt-standalone/pom.xml index a6d3db3..d0c5dae 100644 --- a/rulemgt-standalone/pom.xml +++ b/rulemgt-standalone/pom.xml @@ -322,6 +322,36 @@ <groupId>org.onap.holmes.rule-management</groupId> <artifactId>holmes-rulemgt</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback</artifactId> + </exclusion> + <exclusion> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-validator</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlet</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.onap.holmes.rule-management</groupId> |