Skip to content
Snippets Groups Projects
Commit 1d1cc5a4 authored by David Diederich's avatar David Diederich Committed by Riabokon Stanislav(EPAM)[GCP]
Browse files

Upgrade First Party Library Dependencies for Release 0.17

parent fca5bba5
No related branches found
No related tags found
Loading
...@@ -46,13 +46,23 @@ ...@@ -46,13 +46,23 @@
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>core-lib-gcp</artifactId> <artifactId>core-lib-gcp</artifactId>
<version>0.16.0</version> <version>0.17.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.opengroup.osdu</groupId> <groupId>org.opengroup.osdu</groupId>
<artifactId>notification-core</artifactId> <artifactId>notification-core</artifactId>
<version>0.18.0-SNAPSHOT</version> <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>
<dependency> <dependency>
......
...@@ -31,7 +31,7 @@ public class ServiceAccountJwtGcpClientImpl implements IServiceAccountJwtClient ...@@ -31,7 +31,7 @@ public class ServiceAccountJwtGcpClientImpl implements IServiceAccountJwtClient
private final TokenProvider tokenProvider; private final TokenProvider tokenProvider;
public String getIdToken(String tenantName) { 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(); return "Bearer " + tokenProvider.getIdToken();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment