Skip to content

Commit

Permalink
Update to Spring Boot 3.4.0-M1 (#764)
Browse files Browse the repository at this point in the history
NOTE: Also had to update to SCSt 4.2.0-SNAPSHOT to workaround
spring-cloud/spring-cloud-function#1149

Resolves #758
  • Loading branch information
onobc authored Aug 10, 2024
1 parent 2801131 commit 755f25b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ junit = "5.10.3"
hamcrest = "2.2"
mockito = "5.12.0"
spring-dep-mgmt = "1.1.6"
spring-boot = "3.3.3-SNAPSHOT"
spring-boot-for-docs = "3.3.3-SNAPSHOT"
spring-cloud-stream = "4.1.1"
spring-boot = "3.4.0-M1"
spring-boot-for-docs = "3.4.0-M1"
spring-cloud-stream = "4.2.0-SNAPSHOT"
spring-retry = "2.0.7"
system-lambda = "1.2.1"
testcontainers = "1.19.8"
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pluginManagement {
mavenCentral()
gradlePluginPortal()
maven { url "https://repo.spring.io/release" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The following is the compatibility matrix:
|===
| Spring for Apache Pulsar | Pulsar Client | Pulsar Reactive Client | Spring Boot | Java

| 1.2.x
| 3.3.x
| 0.6.x
| 3.4.x
| 17+

| 1.1.x
| 3.2.x
| 0.5.x
Expand Down
7 changes: 6 additions & 1 deletion spring-pulsar-sample-apps/sample-apps-check-ci.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
settingsEvaluated { settings ->

settings.pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "org.springframework.boot") {
Expand Down

0 comments on commit 755f25b

Please sign in to comment.