Skip to content

Commit ffc023e

Browse files
committed
GH-1354 - Upgrade to Spring Boot 4.0 M2.
1 parent e70b61f commit ffc023e

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/integration.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
- '3.2.12'
1919
- '3.3.12'
2020
- '3.3.13-SNAPSHOT'
21-
- '3.4.7'
22-
- '3.4.8-SNAPSHOT'
23-
- '3.5.3-SNAPSHOT'
24-
framework:
25-
- '6.2.8'
21+
- '3.4.9'
22+
- '3.4.10-SNAPSHOT'
23+
- '3.5.5'
24+
- '3.5.6-SNAPSHOT'
25+
- '4.0.0-SNAPSHOT'
2626
jmolecules:
2727
- '2025.0.0-RC4'
2828

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<nullaway.version>0.12.7</nullaway.version>
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4848
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
49-
<spring-boot.version>4.0.0-M1</spring-boot.version>
49+
<spring-boot.version>4.0.0-M2</spring-boot.version>
5050
<spring-framework.version>7.0.0-M8</spring-framework.version> <!-- For Javadoc links only -->
5151
<testcontainers.version>1.21.3</testcontainers.version>
5252
<structurizr.version>4.1.0</structurizr.version>

spring-modulith-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.boot</groupId>
66
<artifactId>spring-boot-starter-parent</artifactId>
7-
<version>4.0.0-M1</version>
7+
<version>4.0.0-M2</version>
88
<relativePath />
99
</parent>
1010

spring-modulith-test/src/main/java/org/springframework/modulith/test/ModuleTypeExcludeFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import java.util.Objects;
2020
import java.util.function.Supplier;
2121

22+
import org.jspecify.annotations.Nullable;
2223
import org.springframework.boot.context.TypeExcludeFilter;
2324
import org.springframework.core.type.classreading.MetadataReader;
2425
import org.springframework.core.type.classreading.MetadataReaderFactory;
@@ -55,7 +56,7 @@ public boolean match(MetadataReader metadataReader, MetadataReaderFactory metada
5556
* @see java.lang.Object#equals(java.lang.Object)
5657
*/
5758
@Override
58-
public boolean equals(Object obj) {
59+
public boolean equals(@Nullable Object obj) {
5960

6061
if (this == obj) {
6162
return true;

0 commit comments

Comments
 (0)