diff options
Diffstat (limited to 'catalog-fe/pom.xml')
-rw-r--r-- | catalog-fe/pom.xml | 32 |
1 files changed, 25 insertions, 7 deletions
diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml index 5f533956ca..51cd6da03f 100644 --- a/catalog-fe/pom.xml +++ b/catalog-fe/pom.xml @@ -77,9 +77,9 @@ </dependency> <dependency> - <groupId>org.codehaus.groovy</groupId> + <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> - <scope>compile</scope> + <version>${groovy.version}</version> </dependency> <dependency> @@ -189,8 +189,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> <exclusions> <exclusion> @@ -210,7 +210,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> - <version>${httpclient.version}</version> + <version>${httpmime.version}</version> <exclusions> <exclusion> <groupId>org.apache.httpcomponents</groupId> @@ -366,6 +366,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> <!-- System metrics --> @@ -389,6 +401,12 @@ <version>${jersey-bom.version}</version> <type>pom</type> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -423,8 +441,8 @@ <version>${jetty.version}</version> </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> <scope>compile</scope> </dependency> |