From bfa2a3613c273841863f4a3bd2065bd2eb059d29 Mon Sep 17 00:00:00 2001 From: Rob Winch <362503+rwinch@users.noreply.github.com> Date: Mon, 7 Jul 2025 15:12:40 -0500 Subject: [PATCH] Fix frameworkVersion Should not strip -SNAPSHOT --- docs/spring-security-docs.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/spring-security-docs.gradle b/docs/spring-security-docs.gradle index 75ed6b018a..002612d8b1 100644 --- a/docs/spring-security-docs.gradle +++ b/docs/spring-security-docs.gradle @@ -57,9 +57,6 @@ dependencies { def generateAttributes() { def springFrameworkVersion = libs.org.springframework.spring.framework.bom.get().versionConstraint.displayName - springFrameworkVersion = springFrameworkVersion.contains("-") - ? springFrameworkVersion.substring(0, springFrameworkVersion.indexOf("-")) - : springFrameworkVersion def springBootVersion = project.property("springBootVersion") def samplesBranch = project.property("samplesBranch")