27 lines
548 B
Groovy
27 lines
548 B
Groovy
plugins {
|
|
id "java"
|
|
id "maven-publish"
|
|
|
|
id "me.champeau.gradle.jmh"
|
|
id "ru.vyarus.animalsniffer"
|
|
}
|
|
|
|
description = 'OpenTelemetry - zPages'
|
|
ext.moduleName = "io.opentelemetry.sdk.extension.zpages"
|
|
|
|
dependencies {
|
|
implementation project(':opentelemetry-api'),
|
|
project(':opentelemetry-sdk')
|
|
|
|
testImplementation libraries.guava
|
|
|
|
compileOnly 'com.sun.net.httpserver:http:20070405'
|
|
}
|
|
|
|
animalsniffer {
|
|
// Don't check sourceSets.jmh and sourceSets.test
|
|
sourceSets = [
|
|
sourceSets.main
|
|
]
|
|
}
|