build: fix the artifactId in the pom for x-pack-transport

This changes the pom generation to use the value of archivesBaseName when generating
the pom file.

Closes elastic/elasticsearch#3668

Original commit: elastic/x-pack-elasticsearch@a6e537cffe
This commit is contained in:
Jay Modi 2016-10-05 10:46:24 -04:00 committed by GitHub
parent 5aacf3e205
commit 706f53c497
1 changed files with 8 additions and 0 deletions

View File

@ -31,3 +31,11 @@ namingConventions {
//we don't have integration tests
skipIntegTestInDisguise = true
}
publishing {
publications {
nebula(MavenPublication) {
pom.projectIdentity.artifactId = archivesBaseName
}
}
}