@@ -164,6 +164,7 @@ allprojects {
164164 mavenBom " io.micrometer:micrometer-bom:$micrometerVersion "
165165 mavenBom " io.micrometer:micrometer-tracing-bom:$micrometerTracingVersion "
166166 mavenBom " org.apache.camel:camel-bom:$camelVersion "
167+ mavenBom " org.testcontainers:testcontainers-bom:$testcontainersVersion "
167168 }
168169
169170 }
@@ -268,7 +269,7 @@ configure(javaProjects) { subproject ->
268269 testImplementation ' org.jetbrains.kotlin:kotlin-reflect'
269270 testImplementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk8'
270271 testImplementation ' io.projectreactor:reactor-test'
271- testImplementation " org.testcontainers:junit-jupiter: $t estcontainersVersion "
272+ testImplementation ' org.testcontainers:junit-jupiter'
272273
273274 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
274275 testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
@@ -719,7 +720,7 @@ project('spring-integration-jdbc') {
719720 testImplementation " org.postgresql:postgresql:$postgresVersion "
720721 testImplementation " mysql:mysql-connector-java:$mysqlVersion "
721722 testImplementation " org.apache.commons:commons-dbcp2:$commonsDbcp2Version "
722- testImplementation " org.testcontainers:mysql: $t estcontainersVersion "
723+ testImplementation ' org.testcontainers:mysql'
723724
724725 testRuntimeOnly ' com.fasterxml.jackson.core:jackson-databind'
725726 }
@@ -801,6 +802,8 @@ project('spring-integration-mongodb') {
801802 }
802803 optionalApi " org.mongodb:mongodb-driver-sync:$mongoDriverVersion "
803804 optionalApi " org.mongodb:mongodb-driver-reactivestreams:$mongoDriverVersion "
805+
806+ testImplementation ' org.testcontainers:mongodb'
804807 }
805808}
806809
0 commit comments