File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 11[versions ]
22micronaut-testresources = " 1.2.5"
3- spring-boot = " 3.0.3 "
3+ spring-boot = " 3.0.5 "
44junit = " 5.8.1"
55
66[libraries ]
@@ -9,6 +9,7 @@ micronaut-testresources-client = { module = "io.micronaut.testresources:micronau
99micronaut-testresources-testcontainers = { module = " io.micronaut.testresources:micronaut-test-resources-testcontainers" , version.ref = " micronaut-testresources" }
1010
1111spring-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
1314jupiter-api = { module = " org.junit.jupiter:junit-jupiter-api" , version.ref = " junit" }
1415jupiter-engine = { module = " org.junit.jupiter:junit-jupiter-engine" , version.ref = " junit" }
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ plugins {
33}
44
55dependencies {
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
Original file line number Diff line number Diff line change 11subprojects {
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}
You can’t perform that action at this time.
0 commit comments