Skip to content

Commit 540dfcf

Browse files
authored
JDBC: Fix artifactId in pom (#34478)
We're publishing jdbc into our maven repo as though its artifactId is `x-pack-sql-jdbc` but the pom listed the artifactId as `jdbc`. This fixes the pom to line up with where we're publishing the artifact. Closes #34399
1 parent 9b5eaaf commit 540dfcf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,11 @@ artifacts {
5757
nodeps nodepsJar
5858
archives shadowJar
5959
}
60+
61+
publishing {
62+
publications {
63+
nebula {
64+
artifactId = archivesBaseName
65+
}
66+
}
67+
}

0 commit comments

Comments
 (0)