Skip to content

Commit 72e33fc

Browse files
committed
GH-354 - Upgrade to Spring Boot 3.2 RC2.
Also, let only examples run on integration versions.
1 parent 40ab6ce commit 72e33fc

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/integration.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@ jobs:
3333
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
3434
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
3535
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
36-
run: ./mvnw -B -Pwith-preview-repos -Dspring-boot.version=${{ matrix.version }}
36+
run: |
37+
cd spring-modulith-examples
38+
../mvnw -B versions:update-parent -DskipResolution=true -DparentVersion=${{ matrix.version }}
39+
../mvnw -B -Pwith-preview-repos -Dspring-boot.version=${{ matrix.version }}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
<lombok.version>1.18.30</lombok.version>
4141
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4242
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
43-
<spring.version>6.1.0-RC1</spring.version> <!-- For Javadoc links only -->
44-
<spring-boot.version>3.2.0-RC1</spring-boot.version>
43+
<spring.version>6.1.0-RC2</spring.version> <!-- For Javadoc links only -->
44+
<spring-boot.version>3.2.0-RC2</spring-boot.version>
4545
<spring-cloud-aws-bom.version>3.0.2</spring-cloud-aws-bom.version>
4646

4747
</properties>

spring-modulith-examples/pom.xml

Lines changed: 2 additions & 2 deletions
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>3.2.0-RC1</version>
7+
<version>3.2.0-RC2</version>
88
<relativePath />
99
</parent>
1010

@@ -25,7 +25,7 @@
2525

2626
<properties>
2727
<java.version>17</java.version>
28-
<spring-boot.version>3.2.0-RC1</spring-boot.version>
28+
<spring-boot.version>3.2.0-RC2</spring-boot.version>
2929
</properties>
3030

3131
<build>

0 commit comments

Comments
 (0)