Skip to content

Commit 95d9cef

Browse files
authored
Build: Fix jdbc jar pom to not include deps (#36036)
This commit adds back the exclusion of dependencies from the pom file for the jdbc jar, which was accidentally lost in #32014
1 parent 8a7f3f7 commit 95d9cef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

x-pack/plugin/sql/jdbc/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ publishing {
6767
publications {
6868
nebula {
6969
artifactId = archivesBaseName
70+
pom.withXml {
71+
// Nebula is mistakenly including all dependencies that are already shadowed into the shadow jar
72+
asNode().remove(asNode().dependencies)
73+
}
7074
}
7175
}
7276
}

0 commit comments

Comments
 (0)