Upgrade to Reactor 2023.0.0-RC1

Includes Jetty 12.0.2 and Checkstyle 10.12.4

Closes gh-31406
This commit is contained in:
Juergen Hoeller
2023-10-11 00:46:24 +02:00
parent 38de3d5b57
commit 841448877a
2 changed files with 4 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ public class CheckstyleConventions {
project.getPlugins().apply(CheckstylePlugin.class);
project.getTasks().withType(Checkstyle.class).forEach(checkstyle -> checkstyle.getMaxHeapSize().set("1g"));
CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
checkstyle.setToolVersion("10.12.3");
checkstyle.setToolVersion("10.12.4");
checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle"));
String version = SpringJavaFormatPlugin.class.getPackage().getImplementationVersion();
DependencySet checkstyleDependencies = project.getConfigurations().getByName("checkstyle").getDependencies();