From c0202a9af442deb9628e25fbc17d8a0589eeb8b6 Mon Sep 17 00:00:00 2001 From: Alan Tang Date: Mon, 15 Jan 2024 11:39:18 +0000 Subject: [PATCH] Fix SSO OIDC error This fix this exception: `To use SSO OIDC related properties in the 'non-prod-base' profile, the 'ssooidc' service module must be on the class path.` --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 14eb4c7..24e24ce 100644 --- a/build.gradle +++ b/build.gradle @@ -47,6 +47,7 @@ dependencies { implementation(platform('software.amazon.awssdk:bom:2.20.121')) implementation('software.amazon.awssdk:auth') implementation('software.amazon.awssdk:sso') + implementation("software.amazon.awssdk:ssooidc") implementation('software.amazon.awssdk:sts') implementation('com.fasterxml.jackson.core:jackson-databind:2.14.1') implementation('org.slf4j:slf4j-api:1.7.25')