aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2021-04-19 15:23:56 +0200
committerS�bastien Determe <sebastien.determe@intl.att.com>2021-04-21 15:38:34 +0000
commit001e0425471c15c9ffdd97810c3f321ec23865e0 (patch)
tree475cb37325dce2e97a4b24ff23ad6fa3d1d70bfc /pom.xml
parent5db8d1bd2ffd4e3c3a3d9b19dc3cb3f6e1b2ff41 (diff)
Fix remaining nexus-IQ issues
Exclude lib not used by clamp BE that are flagged by Nexus IQ Issue-ID: POLICY-3169 Signed-off-by: sebdet <sebastien.determe@intl.att.com> Change-Id: Idceb809e9cabc709bc820f792648ad1e481d22a7
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 36661b86c..23aaf9ffb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -352,6 +352,12 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.glassfish</groupId>
+ <artifactId>jakarta.el</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
@@ -385,6 +391,16 @@
<groupId>org.onap.policy.models</groupId>
<artifactId>policy-models-pdp</artifactId>
<version>${policy.models.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-server</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.glassfish.jersey.containers</groupId>
+ <artifactId>jersey-container-servlet</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- Others dependencies -->
@@ -433,6 +449,12 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-vfs2</artifactId>
<version>2.8.0</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.squareup.okhttp</groupId>
+ <artifactId>okhttp</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>