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:
parent
8a7f3f75f3
commit
95d9cefea7
|
@ -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)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue