Skip to content

Commit 63af572

Browse files
committed
Upgrade to Jackson 2.18.2, RxJava 3.1.10, Checkstyle 10.20.2
1 parent 72c2343 commit 63af572

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

+1-1
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.20.1");
53+
checkstyle.setToolVersion("10.20.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ javaPlatform {
77
}
88

99
dependencies {
10-
api(platform("com.fasterxml.jackson:jackson-bom:2.18.1"))
10+
api(platform("com.fasterxml.jackson:jackson-bom:2.18.2"))
1111
api(platform("io.micrometer:micrometer-bom:1.14.2"))
1212
api(platform("io.netty:netty-bom:4.1.115.Final"))
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))
@@ -54,7 +54,7 @@ dependencies {
5454
api("io.r2dbc:r2dbc-h2:1.0.0.RELEASE")
5555
api("io.r2dbc:r2dbc-spi-test:1.0.0.RELEASE")
5656
api("io.r2dbc:r2dbc-spi:1.0.0.RELEASE")
57-
api("io.reactivex.rxjava3:rxjava:3.1.9")
57+
api("io.reactivex.rxjava3:rxjava:3.1.10")
5858
api("io.smallrye.reactive:mutiny:1.10.0")
5959
api("io.undertow:undertow-core:2.3.18.Final")
6060
api("io.undertow:undertow-servlet:2.3.18.Final")

0 commit comments

Comments
 (0)