Skip to content

Commit 8414488

Browse files
committed
Upgrade to Reactor 2023.0.0-RC1
Includes Jetty 12.0.2 and Checkstyle 10.12.4 Closes gh-31406
1 parent 38de3d5 commit 8414488

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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.12.3");
53+
checkstyle.setToolVersion("10.12.4");
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ dependencies {
1111
api(platform("io.micrometer:micrometer-bom:1.12.0-RC1"))
1212
api(platform("io.netty:netty-bom:4.1.100.Final"))
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))
14-
api(platform("io.projectreactor:reactor-bom:2023.0.0-M3"))
14+
api(platform("io.projectreactor:reactor-bom:2023.0.0-RC1"))
1515
api(platform("io.rsocket:rsocket-bom:1.1.3"))
1616
api(platform("org.apache.groovy:groovy-bom:4.0.15"))
1717
api(platform("org.apache.logging.log4j:log4j-bom:2.20.0"))
18-
api(platform("org.eclipse.jetty:jetty-bom:12.0.1"))
19-
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.1"))
18+
api(platform("org.eclipse.jetty:jetty-bom:12.0.2"))
19+
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.2"))
2020
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3"))
2121
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.6.0"))
2222
api(platform("org.junit:junit-bom:5.10.0"))

0 commit comments

Comments
 (0)