Skip to content

Commit 9d6d671

Browse files
committed
Upgrade to Jetty 12.0.16, Netty 4.1.118, XStream 1.4.21, AssertJ 3.27.3, Checkstyle 10.21.2
1 parent 24fd094 commit 9d6d671

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -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.20.2");
53+
checkstyle.setToolVersion("10.21.2");
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

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ javaPlatform {
99
dependencies {
1010
api(platform("com.fasterxml.jackson:jackson-bom:2.15.4"))
1111
api(platform("io.micrometer:micrometer-bom:1.12.12"))
12-
api(platform("io.netty:netty-bom:4.1.115.Final"))
12+
api(platform("io.netty:netty-bom:4.1.118.Final"))
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))
1414
api(platform("io.projectreactor:reactor-bom:2023.0.15"))
1515
api(platform("io.rsocket:rsocket-bom:1.1.5"))
1616
api(platform("org.apache.groovy:groovy-bom:4.0.24"))
1717
api(platform("org.apache.logging.log4j:log4j-bom:2.21.1"))
18-
api(platform("org.assertj:assertj-bom:3.26.3"))
19-
api(platform("org.eclipse.jetty:jetty-bom:12.0.15"))
20-
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.15"))
18+
api(platform("org.assertj:assertj-bom:3.27.3"))
19+
api(platform("org.eclipse.jetty:jetty-bom:12.0.16"))
20+
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.16"))
2121
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3"))
2222
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.6.3"))
2323
api(platform("org.junit:junit-bom:5.10.5"))
@@ -44,7 +44,7 @@ dependencies {
4444
api("com.sun.xml.bind:jaxb-impl:3.0.2")
4545
api("com.sun.xml.bind:jaxb-xjc:3.0.2")
4646
api("com.thoughtworks.qdox:qdox:2.1.0")
47-
api("com.thoughtworks.xstream:xstream:1.4.20")
47+
api("com.thoughtworks.xstream:xstream:1.4.21")
4848
api("commons-io:commons-io:2.15.0")
4949
api("de.bechte.junit:junit-hierarchicalcontextrunner:4.12.2")
5050
api("io.micrometer:context-propagation:1.1.1")

0 commit comments

Comments
 (0)