Skip to content

Commit

Permalink
GH-354 - Upgrade to Spring Boot 3.2 RC2.
Browse files Browse the repository at this point in the history
Also, let only examples run on integration versions.
  • Loading branch information
odrotbohm committed Nov 3, 2023
1 parent 40ab6ce commit 72e33fc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ jobs:
GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
run: ./mvnw -B -Pwith-preview-repos -Dspring-boot.version=${{ matrix.version }}
run: |
cd spring-modulith-examples
../mvnw -B versions:update-parent -DskipResolution=true -DparentVersion=${{ matrix.version }}
../mvnw -B -Pwith-preview-repos -Dspring-boot.version=${{ matrix.version }}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<lombok.version>1.18.30</lombok.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<spring.version>6.1.0-RC1</spring.version> <!-- For Javadoc links only -->
<spring-boot.version>3.2.0-RC1</spring-boot.version>
<spring.version>6.1.0-RC2</spring.version> <!-- For Javadoc links only -->
<spring-boot.version>3.2.0-RC2</spring-boot.version>
<spring-cloud-aws-bom.version>3.0.2</spring-cloud-aws-bom.version>

</properties>
Expand Down
4 changes: 2 additions & 2 deletions spring-modulith-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0-RC1</version>
<version>3.2.0-RC2</version>
<relativePath />
</parent>

Expand All @@ -25,7 +25,7 @@

<properties>
<java.version>17</java.version>
<spring-boot.version>3.2.0-RC1</spring-boot.version>
<spring-boot.version>3.2.0-RC2</spring-boot.version>
</properties>

<build>
Expand Down

0 comments on commit 72e33fc

Please sign in to comment.