From f62c20fee7b788c4351b67b947a44f45250644c2 Mon Sep 17 00:00:00 2001 From: David Diederich Date: Sun, 2 Oct 2022 03:53:10 -0400 Subject: [PATCH 1/4] Upgrade First Party Library Dependencies for Release 0.17 --- provider/notification-gcp/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/notification-gcp/pom.xml b/provider/notification-gcp/pom.xml index 2291782d..488b946f 100644 --- a/provider/notification-gcp/pom.xml +++ b/provider/notification-gcp/pom.xml @@ -46,7 +46,7 @@ org.opengroup.osdu core-lib-gcp - 0.16.0 + 0.17.0 -- GitLab From b51520fae3181bce90f57304870b423b529abe15 Mon Sep 17 00:00:00 2001 From: Stanislav Riabokon Date: Thu, 6 Oct 2022 14:55:26 +0300 Subject: [PATCH 2/4] Fixed tests --- notification-core/pom.xml | 12 ++++++------ .../gcp/util/ServiceAccountJwtGcpClientImpl.java | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/notification-core/pom.xml b/notification-core/pom.xml index 5932e072..94342d95 100644 --- a/notification-core/pom.xml +++ b/notification-core/pom.xml @@ -66,7 +66,7 @@ 1.18.8 provided - + com.google.guava guava @@ -101,11 +101,11 @@ jaxb-impl 2.3.0 - + com.auth0 java-jwt @@ -265,11 +265,11 @@ linux-x86_64 jar - + io.undertow undertow-core 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 194eee8c..2c5af0c7 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 From 37218086d539b6e68a2dcda8e857ce1fad1026c8 Mon Sep 17 00:00:00 2001 From: Stanislav Riabokon Date: Thu, 6 Oct 2022 15:34:09 +0300 Subject: [PATCH 3/4] Fixed denependens --- notification-core/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/notification-core/pom.xml b/notification-core/pom.xml index 94342d95..5932e072 100644 --- a/notification-core/pom.xml +++ b/notification-core/pom.xml @@ -66,7 +66,7 @@ 1.18.8 provided - + com.google.guava guava @@ -101,11 +101,11 @@ jaxb-impl 2.3.0 - + com.auth0 java-jwt @@ -265,11 +265,11 @@ linux-x86_64 jar - + io.undertow undertow-core -- GitLab From de2a3cd6cac6699aec564082ef46f9c2173f71b7 Mon Sep 17 00:00:00 2001 From: Stanislav Riabokon Date: Thu, 6 Oct 2022 15:55:05 +0300 Subject: [PATCH 4/4] Fixed denependens --- provider/notification-gcp/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/provider/notification-gcp/pom.xml b/provider/notification-gcp/pom.xml index 8ca1df21..ae53288c 100644 --- a/provider/notification-gcp/pom.xml +++ b/provider/notification-gcp/pom.xml @@ -53,6 +53,16 @@ org.opengroup.osdu notification-core 0.18.0-SNAPSHOT + + + com.google.apis + google-api-services-iam + + + com.google.oauth-client + google-oauth-client + + -- GitLab