diff --git a/instrumentation/apache-httpclient/apache-httpclient-2.0/javaagent/build.gradle.kts b/instrumentation/apache-httpclient/apache-httpclient-2.0/javaagent/build.gradle.kts index e266115fd9ab..32d7aba6af39 100644 --- a/instrumentation/apache-httpclient/apache-httpclient-2.0/javaagent/build.gradle.kts +++ b/instrumentation/apache-httpclient/apache-httpclient-2.0/javaagent/build.gradle.kts @@ -14,6 +14,9 @@ dependencies { library("commons-httpclient:commons-httpclient:2.0") latestDepTestLibrary("commons-httpclient:commons-httpclient:3.+") // see apache-httpclient-4.0 module + + testInstrumentation(project(":instrumentation:apache-httpclient:apache-httpclient-4.0:javaagent")) + testInstrumentation(project(":instrumentation:apache-httpclient:apache-httpclient-5.0:javaagent")) } tasks { diff --git a/instrumentation/apache-httpclient/apache-httpclient-4.0/javaagent/build.gradle.kts b/instrumentation/apache-httpclient/apache-httpclient-4.0/javaagent/build.gradle.kts index 6487bbe10d4f..2c27eea2bcfa 100644 --- a/instrumentation/apache-httpclient/apache-httpclient-4.0/javaagent/build.gradle.kts +++ b/instrumentation/apache-httpclient/apache-httpclient-4.0/javaagent/build.gradle.kts @@ -28,6 +28,9 @@ muzzle { dependencies { library("org.apache.httpcomponents:httpclient:4.0") testCompileOnly("net.jcip:jcip-annotations:1.0") + + testInstrumentation(project(":instrumentation:apache-httpclient:apache-httpclient-2.0:javaagent")) + testInstrumentation(project(":instrumentation:apache-httpclient:apache-httpclient-5.0:javaagent")) } tasks { diff --git a/instrumentation/apache-httpclient/apache-httpclient-5.0/javaagent/build.gradle.kts b/instrumentation/apache-httpclient/apache-httpclient-5.0/javaagent/build.gradle.kts index e40db9cbcdce..39488e1ba340 100644 --- a/instrumentation/apache-httpclient/apache-httpclient-5.0/javaagent/build.gradle.kts +++ b/instrumentation/apache-httpclient/apache-httpclient-5.0/javaagent/build.gradle.kts @@ -14,6 +14,9 @@ dependencies { library("org.apache.httpcomponents.client5:httpclient5:5.0") // https://issues.apache.org/jira/browse/HTTPCORE-653 library("org.apache.httpcomponents.core5:httpcore5:5.0.3") + + testInstrumentation(project(":instrumentation:apache-httpclient:apache-httpclient-2.0:javaagent")) + testInstrumentation(project(":instrumentation:apache-httpclient:apache-httpclient-4.0:javaagent")) } tasks {