From 5348e246a5f8df3ab44baebd195fad75a4c94d71 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 22 Mar 2023 20:20:04 +0000 Subject: [PATCH] Provide dependency management for Testcontainers Closes gh-34712 --- spring-boot-project/spring-boot-dependencies/build.gradle | 7 +++++++ spring-boot-project/spring-boot-parent/build.gradle | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index f8def54d24a..7ef6cd595b2 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1446,6 +1446,13 @@ bom { ] } } + library("Testcontainers", "1.17.6") { + group("org.testcontainers") { + imports = [ + "testcontainers-bom" + ] + } + } library("Thymeleaf", "3.1.1.RELEASE") { group("org.thymeleaf") { modules = [ diff --git a/spring-boot-project/spring-boot-parent/build.gradle b/spring-boot-project/spring-boot-parent/build.gradle index 93f55a29188..de9708b268c 100644 --- a/spring-boot-project/spring-boot-parent/build.gradle +++ b/spring-boot-project/spring-boot-parent/build.gradle @@ -201,13 +201,6 @@ bom { ] } } - library("Testcontainers", "1.17.3") { - group("org.testcontainers") { - imports = [ - "testcontainers-bom" - ] - } - } } dependencies {