12345678910111213141516171819 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("org.jodd")
- module.set("jodd-http")
- versions.set("[4.2.0,)")
- }
- }
- dependencies {
- // 4.2 is the first version with java 8, follow-redirects and HttpRequest#headerOverwrite method
- library("org.jodd:jodd-http:4.2.0")
- testImplementation(project(":instrumentation:jodd-http-4.2:javaagent"))
- testImplementation(project(":instrumentation-api-incubator"))
- }
|