21 lines
423 B
Groovy
21 lines
423 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "maven-publish"
|
|
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = 'OpenTelemetry Prometheus Exporter'
|
|
ext.moduleName = "io.opentelemetry.exporter.prometheus"
|
|
|
|
dependencies {
|
|
api project(':sdk:all')
|
|
|
|
implementation libraries.prometheus_client
|
|
|
|
testImplementation libraries.prometheus_client_common,
|
|
libraries.guava
|
|
|
|
signature libraries.android_signature
|
|
}
|