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
This commit is contained in:
Ryan Ernst 2018-11-29 09:39:17 -08:00 committed by GitHub
parent 8a7f3f75f3
commit 95d9cefea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,10 @@ publishing {
publications { publications {
nebula { nebula {
artifactId = archivesBaseName artifactId = archivesBaseName
pom.withXml {
// Nebula is mistakenly including all dependencies that are already shadowed into the shadow jar
asNode().remove(asNode().dependencies)
}
} }
} }
} }