mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 23:47:57 -05:00
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:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user