Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Explicitly configure some maven artifactIds #1853

Merged
merged 2 commits into from
Aug 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions metrics/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ jar {
}
}

publishing {
publications {
mavenJava(MavenPublication) {
artifactId 'metrics-core'
}
}
}


dependencies {
implementation 'com.google.guava:guava'
implementation 'io.prometheus:simpleclient'
Expand Down
10 changes: 9 additions & 1 deletion services/util/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
apply plugin: 'java-library'

jar {
baseName 'services-util'
baseName 'pantheon-services-util'
manifest {
attributes(
'Specification-Title': baseName,
Expand All @@ -25,6 +25,14 @@ jar {
}
}

publishing {
publications {
mavenJava(MavenPublication) {
artifactId 'services-util'
}
}
}

dependencies {
api project(':util')
implementation project(':metrics:core')
Expand Down