From be0a86e42e05813f3e26cba5879b303b11e488eb Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 24 Mar 2026 07:35:45 +0000 Subject: [PATCH] Fix build.gradle: use correct variable name `branchName` The variable was renamed from `branchName` to `sanitizedBranchName` in the return statement but not in the declaration, causing Gradle project evaluation to fail with "Could not get unknown property 'sanitizedBranchName'". This broke all CI jobs (javadoc, tests, checks) since the project couldn't configure. https://claude.ai/code/session_01PGPxo4kJmjmYn4nAgtyMZ6 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 89e65c14c..0d183d4a8 100644 --- a/build.gradle +++ b/build.gradle @@ -90,7 +90,7 @@ def getDevelopmentVersion() { gitRevParse.waitForProcessOutput(gitRevParseOutput, gitRevParseError) def branchName = gitRevParseOutput.toString().trim().replaceAll('[/\\\\]', '-') - return makeDevelopmentVersion(["0.0.0", sanitizedBranchName, "SNAPSHOT"]) + return makeDevelopmentVersion(["0.0.0", branchName, "SNAPSHOT"]) } def reactiveStreamsVersion = '1.0.3'