Disable Kafka Instrumentation
This commit is contained in:
parent
a726a91306
commit
bff9ae2f4e
|
@ -35,10 +35,12 @@ dependencies {
|
||||||
Project java_agent_project = project
|
Project java_agent_project = project
|
||||||
subprojects { subProj ->
|
subprojects { subProj ->
|
||||||
if (subProj.getPath().startsWith(java_agent_project.getPath() + ':instrumentation:')) {
|
if (subProj.getPath().startsWith(java_agent_project.getPath() + ':instrumentation:')) {
|
||||||
|
if (!subProj.getPath().startsWith(java_agent_project.getPath() + ':instrumentation:kafka')) {
|
||||||
java_agent_project.dependencies {
|
java_agent_project.dependencies {
|
||||||
compile(project(subProj.getPath()))
|
compile(project(subProj.getPath()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
|
Loading…
Reference in New Issue