diff --git a/datasource-decorator-spring-boot-autoconfigure/build.gradle.kts b/datasource-decorator-spring-boot-autoconfigure/build.gradle.kts index 4c26fd4..bbd2baa 100644 --- a/datasource-decorator-spring-boot-autoconfigure/build.gradle.kts +++ b/datasource-decorator-spring-boot-autoconfigure/build.gradle.kts @@ -7,6 +7,7 @@ dependencies { implementation(platform(libs.spring.boot.dependencies)) annotationProcessor(platform(libs.spring.boot.dependencies)) compileOnly(platform(libs.spring.boot.dependencies)) + testImplementation(platform(libs.junit.bom)) testImplementation(platform(libs.spring.boot.dependencies)) implementation(libs.spring.boot) @@ -33,6 +34,7 @@ dependencies { compileOnly(libs.hibernate.core) compileOnly(libs.sql.formatter) + testImplementation(libs.junit.platform.launcher) testImplementation(libs.h2) testImplementation(libs.spring.boot.starter.test) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 55e3107..471eeb4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -spring-boot = "3.4.5" +spring-boot = "3.5.0" p6Spy = "3.9.1" datasource-proxy = "1.10.1" flexy-pool = "3.0.2" @@ -37,6 +37,9 @@ h2 = { group = "com.h2database", name = "h2" } commons-dbcp = { group = "commons-dbcp", name = "commons-dbcp", version = "1.4" } flyway-core = { group = "org.flywaydb", name = "flyway-core" } +junit-bom = { group = "org.junit", name = "junit-bom", version = "5.12.2" } +junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher" } + [plugins] spring-boot = { id = "org.springframework.boot", version.ref = "spring-boot" } nexus-publish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0" }