build.gradle.kts 481 B

12345678910111213141516171819202122
  1. plugins {
  2. id("otel.javaagent-instrumentation")
  3. }
  4. muzzle {
  5. pass {
  6. group.set("com.mchange")
  7. module.set("c3p0")
  8. versions.set("[0.9.2,)")
  9. assertInverse.set(true)
  10. // these versions have missing dependencies in maven central
  11. skip("0.9.2-pre2-RELEASE", "0.9.2-pre3")
  12. }
  13. }
  14. dependencies {
  15. library("com.mchange:c3p0:0.9.2")
  16. implementation(project(":instrumentation:c3p0-0.9:library"))
  17. testImplementation(project(":instrumentation:c3p0-0.9:testing"))
  18. }