Skip to content

Commit 9f76ea1

Browse files
committed
Upgrade to Groovy 4.0.27, Mockito 5.18, Checkstyle 10.25
1 parent d9c103b commit 9f76ea1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void apply(Project project) {
5050
project.getPlugins().apply(CheckstylePlugin.class);
5151
project.getTasks().withType(Checkstyle.class).forEach(checkstyle -> checkstyle.getMaxHeapSize().set("1g"));
5252
CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
53-
checkstyle.setToolVersion("10.23.1");
53+
checkstyle.setToolVersion("10.25.0");
5454
checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle"));
5555
String version = SpringJavaFormatPlugin.class.getPackage().getImplementationVersion();
5656
DependencySet checkstyleDependencies = project.getConfigurations().getByName("checkstyle").getDependencies();

framework-platform/framework-platform.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ dependencies {
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))
1414
api(platform("io.projectreactor:reactor-bom:2024.0.6"))
1515
api(platform("io.rsocket:rsocket-bom:1.1.5"))
16-
api(platform("org.apache.groovy:groovy-bom:4.0.26"))
16+
api(platform("org.apache.groovy:groovy-bom:4.0.27"))
1717
api(platform("org.apache.logging.log4j:log4j-bom:2.21.1"))
1818
api(platform("org.assertj:assertj-bom:3.27.3"))
1919
api(platform("org.eclipse.jetty:jetty-bom:12.0.21"))
2020
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.21"))
2121
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1"))
2222
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.6.3"))
2323
api(platform("org.junit:junit-bom:5.13.0"))
24-
api(platform("org.mockito:mockito-bom:5.17.0"))
24+
api(platform("org.mockito:mockito-bom:5.18.0"))
2525

2626
constraints {
2727
api("com.fasterxml:aalto-xml:1.3.2")

0 commit comments

Comments
 (0)