From b7671377057c05cff280c55782566a24c2637547 Mon Sep 17 00:00:00 2001 From: Marcus Da Coregio Date: Tue, 10 Oct 2023 08:32:33 -0300 Subject: [PATCH] Only Run Gradle Wrapper Update on 6.0.x Issue gh-13865 --- build.gradle | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 713f9ba277..259106f678 100644 --- a/build.gradle +++ b/build.gradle @@ -202,17 +202,9 @@ s101 { wrapperUpgrade { gradle { - 'spring-security-main' { + 'spring-security' { repo = 'spring-projects/spring-security' - baseBranch = 'main' - } - 'spring-security-6.1.x' { - repo = 'spring-projects/spring-security' - baseBranch = '6.1.x' - } - 'spring-security-6.0.x' { - repo = 'spring-projects/spring-security' - baseBranch = '6.0.x' + baseBranch = '6.0.x' // runs only on 6.0.x and the update is merged forward to main } } }