From 1d1cc5a48752625997d54bdc351697b81eaf1658 Mon Sep 17 00:00:00 2001 From: David Diederich <d.diederich@opengroup.org> Date: Fri, 7 Oct 2022 12:12:12 +0000 Subject: [PATCH] Upgrade First Party Library Dependencies for Release 0.17 --- provider/notification-gcp/pom.xml | 12 +++++++++++- .../gcp/util/ServiceAccountJwtGcpClientImpl.java | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/provider/notification-gcp/pom.xml b/provider/notification-gcp/pom.xml index d0b046190..ae53288c0 100644 --- a/provider/notification-gcp/pom.xml +++ b/provider/notification-gcp/pom.xml @@ -46,13 +46,23 @@ <dependency> <groupId>org.opengroup.osdu</groupId> <artifactId>core-lib-gcp</artifactId> - <version>0.16.0</version> + <version>0.17.0</version> </dependency> <dependency> <groupId>org.opengroup.osdu</groupId> <artifactId>notification-core</artifactId> <version>0.18.0-SNAPSHOT</version> + <exclusions> + <exclusion> + <groupId>com.google.apis</groupId> + <artifactId>google-api-services-iam</artifactId> + </exclusion> + <exclusion> + <groupId>com.google.oauth-client</groupId> + <artifactId>google-oauth-client</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> diff --git a/provider/notification-gcp/src/main/java/org/opengroup/osdu/notification/provider/gcp/util/ServiceAccountJwtGcpClientImpl.java b/provider/notification-gcp/src/main/java/org/opengroup/osdu/notification/provider/gcp/util/ServiceAccountJwtGcpClientImpl.java index 194eee8cf..2c5af0c72 100644 --- a/provider/notification-gcp/src/main/java/org/opengroup/osdu/notification/provider/gcp/util/ServiceAccountJwtGcpClientImpl.java +++ b/provider/notification-gcp/src/main/java/org/opengroup/osdu/notification/provider/gcp/util/ServiceAccountJwtGcpClientImpl.java @@ -31,7 +31,7 @@ public class ServiceAccountJwtGcpClientImpl implements IServiceAccountJwtClient private final TokenProvider tokenProvider; public String getIdToken(String tenantName) { - log.info("Tenant name received for auth token is: {}", tenantName); + log.debug("Tenant name received for auth token is: {}", tenantName); return "Bearer " + tokenProvider.getIdToken(); } } -- GitLab