From e7c2e70252702a4c8395dc8ec0c96263596b9757 Mon Sep 17 00:00:00 2001 From: Filipe Roque Date: Wed, 15 Oct 2025 18:33:23 +0100 Subject: [PATCH] Fixes exclusion of testcontainers-jdbc-test from publication --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 52d6f33f25c..f405ea2b92c 100644 --- a/build.gradle +++ b/build.gradle @@ -78,7 +78,7 @@ subprojects { } // specific modules should be excluded from publication - if ( ! ["test-support", "jdbc-test"].contains(it.name) && !it.path.startsWith(":docs:") && it != project(":docs") ) { + if ( ! ["test-support", "testcontainers-jdbc-test"].contains(it.name) && !it.path.startsWith(":docs:") && it != project(":docs") ) { apply from: "$rootDir/gradle/publishing.gradle" if (it.name != "bom") {