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 eaa2c3e commit c0c4785
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions x-pack/plugin/sql/jdbc/build.gradle
Original file line number Diff line number Diff line change
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 c0c4785

Please sign in to comment.