Skip to content

Commit

Permalink
[Gradle] Fix deprecation warning in branchConsistency task (elastic#1…
Browse files Browse the repository at this point in the history
…19587)

The groovy syntax we use in branchConsistency task was deprecated in
gradle 8.12
  • Loading branch information
breskeby authored Jan 6, 2025
1 parent 9cbbd2d commit f7444ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ tasks.register("verifyBwcTestsEnabled") {

tasks.register("branchConsistency") {
description = 'Ensures this branch is internally consistent. For example, that versions constants match released versions.'
group 'Verification'
group = 'Verification'
dependsOn ":verifyVersions", ":verifyBwcTestsEnabled"
}

Expand Down

0 comments on commit f7444ae

Please sign in to comment.