Skip to content

Commit 500ac8b

Browse files
committed
Update to Spring Boot 3.4.0-M1
Resolves #758
1 parent 2801131 commit 500ac8b

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ junit = "5.10.3"
2222
hamcrest = "2.2"
2323
mockito = "5.12.0"
2424
spring-dep-mgmt = "1.1.6"
25-
spring-boot = "3.3.3-SNAPSHOT"
26-
spring-boot-for-docs = "3.3.3-SNAPSHOT"
25+
spring-boot = "3.4.0-M1"
26+
spring-boot-for-docs = "3.4.0-M1"
2727
spring-cloud-stream = "4.1.1"
2828
spring-retry = "2.0.7"
2929
system-lambda = "1.2.1"

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pluginManagement {
33
mavenCentral()
44
gradlePluginPortal()
55
maven { url "https://repo.spring.io/release" }
6+
maven { url "https://repo.spring.io/milestone" }
67
maven { url "https://repo.spring.io/snapshot" }
78
}
89
}

spring-pulsar-docs/src/main/antora/modules/ROOT/pages/appendix/version-compatibility.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The following is the compatibility matrix:
77
|===
88
| Spring for Apache Pulsar | Pulsar Client | Pulsar Reactive Client | Spring Boot | Java
99

10+
| 1.2.x
11+
| 3.3.x
12+
| 0.6.x
13+
| 3.4.x
14+
| 17+
15+
1016
| 1.1.x
1117
| 3.2.x
1218
| 0.5.x

spring-pulsar-sample-apps/sample-apps-check-ci.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
settingsEvaluated { settings ->
2-
32
settings.pluginManagement {
3+
repositories {
4+
mavenCentral()
5+
gradlePluginPortal()
6+
maven { url "https://repo.spring.io/milestone" }
7+
maven { url "https://repo.spring.io/snapshot" }
8+
}
49
resolutionStrategy {
510
eachPlugin {
611
if (requested.id.id == "org.springframework.boot") {

0 commit comments

Comments
 (0)