Skip to content

Commit

Permalink
Build: Fix jdbc jar pom to not include deps
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 elastic#32014
  • Loading branch information
rjernst committed Nov 29, 2018
1 parent 1390f36 commit a3723f8
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 a3723f8

Please sign in to comment.