123456789101112131415161718192021222324 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("com.squareup.okhttp")
- module.set("okhttp")
- versions.set("[2.2,3)")
- assertInverse.set(true)
- }
- }
- dependencies {
- bootstrap(project(":instrumentation:executors:bootstrap"))
- library("com.squareup.okhttp:okhttp:2.2.0")
- latestDepTestLibrary("com.squareup.okhttp:okhttp:2.+")
- }
|