Skip to content

Commit 546fa4a

Browse files
authored
Fix exclusion of testcontainers-jdbc-test from publication (#11115)
1 parent 376642b commit 546fa4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ subprojects {
7878
}
7979

8080
// specific modules should be excluded from publication
81-
if ( ! ["test-support", "jdbc-test"].contains(it.name) && !it.path.startsWith(":docs:") && it != project(":docs") ) {
81+
if ( ! ["test-support", "testcontainers-jdbc-test"].contains(it.name) && !it.path.startsWith(":docs:") && it != project(":docs") ) {
8282
apply from: "$rootDir/gradle/publishing.gradle"
8383

8484
if (it.name != "bom") {

0 commit comments

Comments
 (0)