Explicitly configure some maven artifactIds (#1853)

Some auto-generated maven names cause collissions when used with the gradle
publish plugin, namely `core` and `util`.  Rename two jars that have such
a colission so the colission doesn't occur.
Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
This commit is contained in:
Danno Ferrin
2019-08-14 14:23:53 -06:00
committed by GitHub
parent f9e50ae8c6
commit ce8faf41c1
2 changed files with 18 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
apply plugin: 'java-library'
jar {
baseName 'services-util'
baseName 'pantheon-services-util'
manifest {
attributes(
'Specification-Title': baseName,
@@ -25,6 +25,14 @@ jar {
}
}
publishing {
publications {
mavenJava(MavenPublication) {
artifactId 'services-util'
}
}
}
dependencies {
api project(':util')
implementation project(':metrics:core')