26 lines
705 B
Groovy
26 lines
705 B
Groovy
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
excludedClassesConverage += ['datadog.trace.agent.tooling.*']
|
|
|
|
configurations {
|
|
// classpath used by the instrumentation muzzle plugin
|
|
instrumentationMuzzle
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':dd-java-agent:agent-bootstrap')
|
|
compile group: 'com.blogspot.mydailyjava', name: 'weak-lock-free', version: '0.13'
|
|
compile deps.bytebuddy
|
|
compile deps.bytebuddyagent
|
|
annotationProcessor deps.autoservice
|
|
implementation deps.autoservice
|
|
|
|
compileOnly project(':dd-trace-ot')
|
|
|
|
testCompile deps.opentracing
|
|
testCompile project(':dd-java-agent:testing')
|
|
|
|
instrumentationMuzzle sourceSets.main.output
|
|
instrumentationMuzzle configurations.compile
|
|
}
|