Skip to content

Commit

Permalink
Build: Fix jdbc jar pom to not include deps (#36036)
Browse files Browse the repository at this point in the history
This commit adds back the exclusion of dependencies from the pom file
for the jdbc jar, which was accidentally lost in #32014
  • Loading branch information
rjernst committed Nov 29, 2018
1 parent 8a7f3f7 commit 95d9cef
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions x-pack/plugin/sql/jdbc/build.gradle
Expand Up @@ -67,6 +67,10 @@ publishing {
publications {
nebula {
artifactId = archivesBaseName
pom.withXml {
// Nebula is mistakenly including all dependencies that are already shadowed into the shadow jar
asNode().remove(asNode().dependencies)
}
}
}
}

0 comments on commit 95d9cef

Please sign in to comment.