12345678910111213141516171819202122232425 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("org.apache.httpcomponents.client5")
- module.set("httpclient5")
- versions.set("[5.0,)")
- }
- }
- dependencies {
- library("org.apache.httpcomponents.client5:httpclient5:5.0")
- }
- tasks {
- val testStableSemconv by registering(Test::class) {
- jvmArgs("-Dotel.semconv-stability.opt-in=http")
- }
- check {
- dependsOn(testStableSemconv)
- }
- }
|