diff options
author | vasraz <vasyl.razinkov@est.tech> | 2023-07-05 22:22:43 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2023-07-10 13:55:11 +0000 |
commit | dfe98bd779a03efc8f176d1c8946c769417f5a60 (patch) | |
tree | 3c25f9a8047175c964e1acf243d8a5c03a30306b /catalog-be | |
parent | b76217740231c916fce669613e20fb70c7320a2e (diff) |
Update outdated/vulnerable dependencies
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ib809c636cd4505589901d1f5b95bedba1fc0a1f5
Issue-ID: SDC-4560
Diffstat (limited to 'catalog-be')
-rw-r--r-- | catalog-be/pom.xml | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml index 414422cd59..ee8c1d3618 100644 --- a/catalog-be/pom.xml +++ b/catalog-be/pom.xml @@ -164,8 +164,8 @@ </dependency> <dependency> - <groupId>javax.ws.rs</groupId> - <artifactId>javax.ws.rs-api</artifactId> + <groupId>jakarta.ws.rs</groupId> + <artifactId>jakarta.ws.rs-api</artifactId> <version>${ws.rs.version}</version> </dependency> @@ -366,8 +366,8 @@ <!-- http client --> <dependency> - <groupId>org.apache.httpcomponents</groupId> - <artifactId>httpclient</artifactId> + <groupId>org.apache.httpcomponents.client5</groupId> + <artifactId>httpclient5</artifactId> <version>${httpclient.version}</version> <scope>compile</scope> <exclusions> @@ -610,7 +610,12 @@ <artifactId>json-simple</artifactId> <version>${json-simple.version}</version> <scope>compile</scope> - + <exclusions> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </exclusion> + </exclusions> </dependency> <!-- functional java --> @@ -752,6 +757,18 @@ <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </exclusion> + <exclusion> + <groupId>org.onap.aaf.authz</groupId> + <artifactId>aaf-cadi-aaf</artifactId> + </exclusion> + <exclusion> + <groupId>org.onap.aaf.authz</groupId> + <artifactId>aaf-cadi-client</artifactId> + </exclusion> + <exclusion> + <groupId>org.onap.aaf.authz</groupId> + <artifactId>aaf-cadi-core</artifactId> + </exclusion> </exclusions> </dependency> @@ -821,6 +838,10 @@ <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-cache</artifactId> </exclusion> + <exclusion> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -877,6 +898,12 @@ <version>${jersey-bom.version}</version> <type>pom</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -982,12 +1009,11 @@ <dependency> <groupId>com.google.code.bean-matchers</groupId> <artifactId>bean-matchers</artifactId> - <version>0.11</version> + <version>${bean-matchers.version}</version> <scope>test</scope> </dependency> - <dependency> - <groupId>org.codehaus.groovy</groupId> + <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> |