Skip to content

Commit 657fe1f

Browse files
committed
Merge branch '6.0.x'
2 parents 697d5e6 + 4aa8619 commit 657fe1f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ configure([rootProject] + javaProjects) { project ->
6262
matching { it.name.endsWith("Classpath") }.all { it.extendsFrom(dependencyManagement) }
6363
}
6464

65-
6665
dependencies {
6766
dependencyManagement(enforcedPlatform(dependencies.project(path: ":framework-platform")))
6867
testImplementation("org.junit.jupiter:junit-jupiter-api")

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

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

framework-platform/framework-platform.gradle

Lines changed: 1 addition & 1 deletion
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.14.2"))
10+
api(platform("com.fasterxml.jackson:jackson-bom:2.14.3"))
1111
api(platform("io.micrometer:micrometer-bom:1.10.6"))
1212
api(platform("io.netty:netty-bom:4.1.92.Final"))
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))

spring-web/spring-web.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@ dependencies {
3737
optional("org.eclipse.jetty:jetty-servlet") {
3838
exclude group: "jakarta.servlet", module: "jakarta.servlet-api"
3939
}
40-
optional("org.eclipse.jetty.ee10:jetty-ee10-servlet:12.0.0.beta0") {
40+
optional("org.eclipse.jetty.ee10:jetty-ee10-servlet:12.0.0.beta1") {
4141
exclude group: "jakarta.servlet", module: "jakarta.servlet-api"
42+
exclude group: "org.eclipse.jetty", module: "jetty-ee"
43+
exclude group: "org.eclipse.jetty", module: "jetty-security"
4244
exclude group: "org.eclipse.jetty", module: "jetty-server"
4345
exclude group: "org.eclipse.jetty", module: "jetty-servlet"
4446
}

0 commit comments

Comments
 (0)