Skip to content

Commit 0ad838b

Browse files
committed
Disable transitive dependencies when resolving bwc JDBC driver artifact (elastic#73448)
1 parent aac6011 commit 0ad838b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

x-pack/plugin/sql/qa/jdbc/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ subprojects {
7676
if (bwcVersion.onOrAfter(Version.fromString("7.9.0"))) {
7777
String baseName = "v${bwcVersion}"
7878
UnreleasedVersionInfo unreleasedVersion = BuildParams.bwcVersions.unreleasedInfo(bwcVersion)
79-
Configuration driverConfiguration = configurations.create("jdbcDriver${baseName}")
79+
Configuration driverConfiguration = configurations.create("jdbcDriver${baseName}") {
80+
// TODO: Temporary workaround for https://github.com/elastic/elasticsearch/issues/73433
81+
transitive = false
82+
}
8083
Object driverDependency = null
8184

8285
if (unreleasedVersion) {

0 commit comments

Comments
 (0)