From 068b1e6d039677f0053d8dabd8a53e4984232500 Mon Sep 17 00:00:00 2001 From: "Merchant, Saifuddin A" Date: Fri, 8 Aug 2025 11:45:01 -0700 Subject: [PATCH 1/3] issue-1299 remove duplicate dependency for spring-boot-starter-test to fix WARNING 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework.boot:spring-boot-starter-test:jar --- integration-test/pom.xml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/integration-test/pom.xml b/integration-test/pom.xml index 2a76b0947c..c87359b20b 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -76,7 +76,7 @@ ${project.version} test - + org.hamcrest hamcrest-junit 2.0.0.0 @@ -98,11 +98,6 @@ spring-boot-starter test - - org.springframework.boot - spring-boot-starter-test - test - From d8f9f3281bdc1d66f24fe784ea0f0856fcc14677 Mon Sep 17 00:00:00 2001 From: "Merchant, Saifuddin A" Date: Fri, 8 Aug 2025 11:47:01 -0700 Subject: [PATCH 2/3] issue-1299 AbstractAuthenticationConfiguration.getLinkText() should be String instead of Boolean --- .../identityproviders/AbstractAuthenticationConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/uaa/identityproviders/AbstractAuthenticationConfiguration.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/uaa/identityproviders/AbstractAuthenticationConfiguration.java index 9fcaa5f721..f453ba066c 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/uaa/identityproviders/AbstractAuthenticationConfiguration.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/uaa/identityproviders/AbstractAuthenticationConfiguration.java @@ -44,7 +44,7 @@ abstract class AbstractAuthenticationConfiguration */ @JsonProperty("linkText") @Nullable - abstract Boolean getLinkText(); + abstract String getLinkText(); /** * The client ID which is registered with the external OAuth provider for use by the UAA From b3fabacdde0a199631df4022f4aae85686a7f295 Mon Sep 17 00:00:00 2001 From: "Merchant, Saifuddin A" Date: Mon, 18 Aug 2025 10:30:35 -0700 Subject: [PATCH 3/3] Remove spring-boot-starter as a top level dependency from the pom. It should be pulled as a transitive dependency of spring-boot-starter-tes --- integration-test/pom.xml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/integration-test/pom.xml b/integration-test/pom.xml index c87359b20b..71d210b15e 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -93,11 +93,6 @@ value provided - - org.springframework.boot - spring-boot-starter - test -