diff --git a/modules/jig-erd-spring-boot-autoconfigure/build.gradle.kts b/modules/jig-erd-spring-boot-autoconfigure/build.gradle.kts index a462347..aaa3cf3 100644 --- a/modules/jig-erd-spring-boot-autoconfigure/build.gradle.kts +++ b/modules/jig-erd-spring-boot-autoconfigure/build.gradle.kts @@ -6,12 +6,12 @@ dependencies { implementation(project(":modules:jig-erd")) // pomに出力しないようにcompileOnlyにしておく - compileOnly(platform("org.springframework.boot:spring-boot-dependencies:3.4.5")) + compileOnly(platform("org.springframework.boot:spring-boot-dependencies:3.5.7")) compileOnly("org.springframework.boot:spring-boot-autoconfigure") compileOnly("org.springframework:spring-web") // compileOnlyだと見てくれないのでこちらにもplatformがいる - testImplementation(platform("org.springframework.boot:spring-boot-dependencies:3.4.5")) + testImplementation(platform("org.springframework.boot:spring-boot-dependencies:3.5.7")) testImplementation("org.springframework.boot:spring-boot-starter-web") testImplementation("org.springframework.boot:spring-boot-starter-jdbc") testImplementation("com.h2database:h2")