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:
Nik Everett 2018-10-16 11:02:10 -04:00 committed by GitHub
parent 9b5eaafc24
commit 540dfcf23e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -57,3 +57,11 @@ artifacts {
nodeps nodepsJar
archives shadowJar
}
publishing {
publications {
nebula {
artifactId = archivesBaseName
}
}
}