summaryrefslogtreecommitdiffstats
path: root/catalog-be
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2022-03-03 11:38:39 +0000
committerVasyl Razinkov <vasyl.razinkov@est.tech>2022-03-03 14:34:04 +0000
commit584dfd7712be7c238ef86c8ea4d009a61b33c75c (patch)
tree1229ad848b21af14057393b4aece114f9e416616 /catalog-be
parent3dcbae860f1a4bc8e6596cddc9cb19611d0c3dc7 (diff)
Update vulnerable dependencies
Change-Id: Id1098d2e0aceb3fb507e32994925d36f23ad8517 Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Issue-ID: SDC-3895
Diffstat (limited to 'catalog-be')
-rw-r--r--catalog-be/pom.xml12
-rw-r--r--catalog-be/src/main/docker/backend/Dockerfile2
2 files changed, 9 insertions, 5 deletions
diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml
index 8bf5515d87..8cddf173d6 100644
--- a/catalog-be/pom.xml
+++ b/catalog-be/pom.xml
@@ -604,14 +604,14 @@
<version>${org.owasp.esapi.version}</version>
<exclusions>
<exclusion>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- </exclusion>
- <exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</exclusion>
@@ -627,6 +627,10 @@
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
diff --git a/catalog-be/src/main/docker/backend/Dockerfile b/catalog-be/src/main/docker/backend/Dockerfile
index 5e49f57202..902695519b 100644
--- a/catalog-be/src/main/docker/backend/Dockerfile
+++ b/catalog-be/src/main/docker/backend/Dockerfile
@@ -26,7 +26,7 @@ RUN mkdir $JETTY_FOLDER && chown onap:onap $JETTY_FOLDER
USER onap
#Download jetty
-RUN wget https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${jetty.version}/jetty-distribution-${jetty.version}.tar.gz -O $JETTY_FOLDER/jetty.tar.gz && \
+RUN wget https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${jetty-distribution.version}/jetty-distribution-${jetty-distribution.version}.tar.gz -O $JETTY_FOLDER/jetty.tar.gz && \
tar xvz -C $JETTY_FOLDER -f $JETTY_FOLDER/jetty.tar.gz --strip 1 && \
rm -rf $JETTY_FOLDER/jetty.tar.gz