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
This commit is contained in:
parent
9b5eaafc24
commit
540dfcf23e
|
@ -57,3 +57,11 @@ artifacts {
|
|||
nodeps nodepsJar
|
||||
archives shadowJar
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
nebula {
|
||||
artifactId = archivesBaseName
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue