File tree Expand file tree Collapse file tree 2 files changed +33
-27
lines changed
dd-trace-ot/correlation-id-injection Expand file tree Collapse file tree 2 files changed +33
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ plugins {
2+ `java- library`
3+ }
4+
5+ apply (from = " $rootDir /gradle/java.gradle" )
6+
7+ val minimumBranchCoverage by extra(0.8 )
8+
9+ val excludedClassesCoverage by extra(
10+ listOf (
11+ " datadog.trace.correlation.CorrelationIdInjectors" ,
12+ " datadog.trace.correlation.CorrelationIdInjectors.InjectorType"
13+ )
14+ )
15+
16+ description = " correlation-id-injection"
17+
18+ val log4j1 = " 1.2.17"
19+ val log4j2 = " 2.19.0"
20+ val logback = " 1.3.5"
21+
22+ dependencies {
23+ api(project(" :dd-trace-api" ))
24+ implementation(libs.slf4j)
25+ compileOnly(" org.apache.logging.log4j:log4j-api:$log4j2 " )
26+ compileOnly(" log4j:log4j:$log4j1 " )
27+
28+ testImplementation(libs.guava)
29+ testImplementation(project(" :dd-trace-ot" ))
30+ testImplementation(project(" :dd-java-agent:testing" ))
31+ testImplementation(" org.apache.logging.log4j:log4j-core:$log4j2 " )
32+ testImplementation(" ch.qos.logback:logback-core:$logback " )
33+ }
You can’t perform that action at this time.
0 commit comments