File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
buildSrc/src/main/java/org/springframework/build Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ configure([rootProject] + javaProjects) { project ->
62
62
matching { it. name. endsWith(" Classpath" ) }. all { it. extendsFrom(dependencyManagement) }
63
63
}
64
64
65
-
66
65
dependencies {
67
66
dependencyManagement(enforcedPlatform(dependencies. project(path : " :framework-platform" )))
68
67
testImplementation(" org.junit.jupiter:junit-jupiter-api" )
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public void apply(Project project) {
49
49
project .getPlugins ().apply (CheckstylePlugin .class );
50
50
project .getTasks ().withType (Checkstyle .class ).forEach (checkstyle -> checkstyle .getMaxHeapSize ().set ("1g" ));
51
51
CheckstyleExtension checkstyle = project .getExtensions ().getByType (CheckstyleExtension .class );
52
- checkstyle .setToolVersion ("10.9.3 " );
52
+ checkstyle .setToolVersion ("10.10.0 " );
53
53
checkstyle .getConfigDirectory ().set (project .getRootProject ().file ("src/checkstyle" ));
54
54
String version = SpringJavaFormatPlugin .class .getPackage ().getImplementationVersion ();
55
55
DependencySet checkstyleDependencies = project .getConfigurations ().getByName ("checkstyle" ).getDependencies ();
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ javaPlatform {
7
7
}
8
8
9
9
dependencies {
10
- api(platform(" com.fasterxml.jackson:jackson-bom:2.14.2 " ))
10
+ api(platform(" com.fasterxml.jackson:jackson-bom:2.14.3 " ))
11
11
api(platform(" io.micrometer:micrometer-bom:1.10.6" ))
12
12
api(platform(" io.netty:netty-bom:4.1.92.Final" ))
13
13
api(platform(" io.netty:netty5-bom:5.0.0.Alpha5" ))
Original file line number Diff line number Diff line change @@ -37,8 +37,10 @@ dependencies {
37
37
optional(" org.eclipse.jetty:jetty-servlet" ) {
38
38
exclude group : " jakarta.servlet" , module : " jakarta.servlet-api"
39
39
}
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 " ) {
41
41
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"
42
44
exclude group : " org.eclipse.jetty" , module : " jetty-server"
43
45
exclude group : " org.eclipse.jetty" , module : " jetty-servlet"
44
46
}
You can’t perform that action at this time.
0 commit comments