Skip to content

Commit d6a88a0

Browse files
authored
update to Spring Boot 3.0.5 (#20)
1 parent c710923 commit d6a88a0

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
micronaut-testresources = "1.2.5"
3-
spring-boot = "3.0.3"
3+
spring-boot = "3.0.5"
44
junit = "5.8.1"
55

66
[libraries]
@@ -9,6 +9,7 @@ micronaut-testresources-client = { module = "io.micronaut.testresources:micronau
99
micronaut-testresources-testcontainers = { module = "io.micronaut.testresources:micronaut-test-resources-testcontainers", version.ref = "micronaut-testresources" }
1010

1111
spring-boot = { module = "org.springframework.boot:spring-boot", version.ref = "spring-boot" }
12+
spring-bootbom = { module = "org.springframework.boot:spring-boot-dependencies", version.ref = "spring-boot" }
1213

1314
jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
1415
jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }

testprojects/azurite/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ plugins {
33
}
44

55
dependencies {
6-
implementation("com.azure.spring:spring-cloud-azure-starter-storage-blob:6.0.0-beta.4")
6+
implementation("com.azure.spring:spring-cloud-azure-starter-storage-blob:5.0.0")
7+
8+
79

810
testImplementation("org.springframework.boot:spring-boot-starter-test")
911

testprojects/build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
subprojects {
2-
if (this.subprojects.isEmpty()) {
3-
dependencies {
4-
"implementation"(platform("org.springframework.boot:spring-boot-dependencies:3.0.1"))
2+
afterEvaluate {
3+
if (this.subprojects.isEmpty()) {
4+
dependencies {
5+
"implementation"(platform(libs.spring.bootbom))
6+
}
57
}
68
}
79
}

0 commit comments

Comments
 (0)