Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): Align versions of spring-core, spring-jcl, and `spring…
Browse files Browse the repository at this point in the history
…-orm`

Ensure consistent versions of `spring-core`, `spring-jcl`, and `spring-orm` across all transitive dependencies. This resolves potential version conflicts caused by different versions being pulled in by other dependencies.

Close #13856
matrei committed Nov 19, 2024
1 parent 50fc30a commit f765069
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -246,6 +246,10 @@ allprojects {
if (details.requested.group == "org.spockframework") {
details.useVersion(spockVersion)
}
def forcedSpringLibraryUpgrades = ['spring-core', 'spring-jcl', 'spring.orm']
if (details.requested.group == 'org.springframework' && details.requested.name in forcedSpringLibraryUpgrades) {
details.useVersion(springVersion)
}
}
}
}

0 comments on commit f765069

Please sign in to comment.