Skip to content

Commit

Permalink
Merge branch '1.1.x' into 1.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
shakuzen committed Oct 26, 2020
2 parents 22b5690 + bd36749 commit 796ca2e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ subprojects {
}
}

jar {
metaInf {
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
}
}

if (project.extensions.findByName('bintray')) {
bintray.labels = ['micrometer', 'atlas', 'metrics', 'prometheus', 'spectator', 'influx', 'new-relic', 'signalfx', 'wavefront', 'elastic', 'dynatrace', 'azure-monitor', 'appoptics', 'kairos', 'stackdriver']
bintray.packageName = 'io.micrometer'
Expand Down
4 changes: 4 additions & 0 deletions implementations/micrometer-registry-statsd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ shadowJar {
relocate 'io.netty', 'io.micrometer.shaded.io.netty'
exclude 'META-INF/native/libnetty_transport_native_epoll_x86_64.so'
relocate 'org.pcollections', 'io.micrometer.shaded.statsd.org.pcollections'
metaInf {
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
}
}

jar.enabled = false
Expand Down
4 changes: 4 additions & 0 deletions micrometer-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ shadowJar {
include(dependency('org.pcollections:'))
}
relocate 'org.pcollections', 'io.micrometer.shaded.org.pcollections'
metaInf {
from "$rootDir/LICENSE"
from "$rootDir/NOTICE"
}
}

jar.enabled = false
Expand Down

0 comments on commit 796ca2e

Please sign in to comment.