1234567891011121314151617181920212223242526272829303132 |
- plugins {
- id("otel.javaagent-instrumentation")
- }
- muzzle {
- pass {
- group.set("log4j")
- module.set("log4j")
- versions.set("[1.2,)")
-
- skip("1.2.15")
- }
- }
- dependencies {
-
- library("log4j:log4j:1.2.4")
- }
- configurations {
-
-
-
- testImplementation {
- exclude("org.slf4j", "log4j-over-slf4j")
- }
-
- testImplementation {
- exclude("javax.jms", "jms")
- }
- }
|