Merge pull request #211 from DataDog/ark/disable_kafka
Disable Kafka Instrumentation
This commit is contained in:
commit
0ae80dbb80
|
@ -35,8 +35,10 @@ dependencies {
|
|||
Project java_agent_project = project
|
||||
subprojects { subProj ->
|
||||
if (subProj.getPath().startsWith(java_agent_project.getPath() + ':instrumentation:')) {
|
||||
java_agent_project.dependencies {
|
||||
compile(project(subProj.getPath()))
|
||||
if (!subProj.getPath().startsWith(java_agent_project.getPath() + ':instrumentation:kafka')) {
|
||||
java_agent_project.dependencies {
|
||||
compile(project(subProj.getPath()))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue