22 lines
395 B
Plaintext
22 lines
395 B
Plaintext
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 {
|
|
withType<Test>().configureEach {
|
|
systemProperty("testLatestDeps", findProperty("testLatestDeps") as Boolean)
|
|
}
|
|
}
|