Skip to content

Commit

Permalink
Work around Thymeleaf's dependency on spring-security-bom:6.0.0-RC2
Browse files Browse the repository at this point in the history
Closes gh-33348
  • Loading branch information
wilkinsona committed Nov 24, 2022
1 parent 355b428 commit fb2cc73
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ allprojects {

repositories {
mavenCentral()
if (version.contains('-')) {
maven { url "https://repo.spring.io/milestone" }
maven {
url "https://repo.spring.io/milestone"
content {
// Thymeleaf uses 6.0.0-RC2 of Security's bom in its dependency management
includeModule("org.springframework.security", "spring-security-bom")
}
}
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
Expand Down

0 comments on commit fb2cc73

Please sign in to comment.