21 lines
505 B
Groovy
21 lines
505 B
Groovy
plugins {
|
|
id "java"
|
|
id "maven-publish"
|
|
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = 'OpenTelemetry Prometheus Exporter'
|
|
ext.moduleName = "io.opentelemetry.exporters.prometheus"
|
|
|
|
dependencies {
|
|
api project(':opentelemetry-sdk')
|
|
|
|
implementation libraries.prometheus_client
|
|
|
|
testImplementation libraries.prometheus_client_common
|
|
|
|
signature "org.codehaus.mojo.signature:java18:1.0@signature"
|
|
signature "net.sf.androidscents.signature:android-api-level-24:7.0_r2@signature"
|
|
}
|