Skip to content

Commit

Permalink
Upgrade Spring version in Thymeleaf Spring tests (#231)
Browse files Browse the repository at this point in the history
Spring 6.0 milestones versions were using internal GraalVM
for its `ConstantReadableJavaField`, which has been replaced by
`PreComputeFieldFeature` in the RC phase.

This commit upgrades the Spring version being used in the Thymeleaf
Spring tests to avoid referencing internal GraalVM APIs.

Fixes gh-230
  • Loading branch information
bclozel authored Feb 14, 2023
1 parent b662836 commit 657d207
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ dependencies {
testImplementation("org.slf4j:slf4j-api:1.7.36")
testImplementation("org.slf4j:slf4j-simple:1.7.36")
testImplementation("org.thymeleaf:thymeleaf-spring6:$libraryVersion")
testImplementation("org.springframework:spring-web:6.0.0-M6")
testImplementation("org.springframework:spring-webflux:6.0.0-M6")
testImplementation("org.springframework:spring-context:6.0.0-M6")
testImplementation("org.springframework:spring-web:6.0.0")
testImplementation("org.springframework:spring-webflux:6.0.0")
testImplementation("org.springframework:spring-context:6.0.0")
testImplementation('org.assertj:assertj-core:3.22.0')
}

Expand Down

0 comments on commit 657d207

Please sign in to comment.