Fixing rocksdb artifact name conflicts (#73)

Signed-off-by: Lucas Saldanha <lucas.saldanha@consensys.net>
pull/75/head
Lucas Saldanha 5 years ago committed by GitHub
parent 56029dc412
commit 11cb619a50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      metrics/rocksdb/build.gradle
  2. 6
      plugins/rocksdb/build.gradle

@ -27,6 +27,12 @@ jar {
}
}
publishing {
publications {
mavenJava(MavenPublication) { artifactId 'metrics-rocksdb' }
}
}
dependencies {
implementation project(':metrics:core')
implementation project(':plugin-api')

@ -25,6 +25,12 @@ jar {
}
}
publishing {
publications {
mavenJava(MavenPublication) { artifactId 'plugins-rocksdb' }
}
}
dependencies {
api project(':plugin-api')

Loading…
Cancel
Save