From e57973bbf2e79cd9168b5c7fefb962289f5c0f62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dejan=20Stojadinovi=C4=87?= Date: Wed, 28 Apr 2021 20:31:37 +0200 Subject: [PATCH] KAFKA-12417: streams copyDependentLibs should not copy testRuntime configuration jars (#10466) This also fixes a Gradle deprecation that unblocks the upgrade to Gradle 7.0. Reviewers: Ismael Juma --- build.gradle | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.gradle b/build.gradle index b535dd39a69..2c214053948 100644 --- a/build.gradle +++ b/build.gradle @@ -1667,11 +1667,6 @@ project(':streams') { } tasks.create(name: "copyDependantLibs", type: Copy) { - from (configurations.testRuntime) { - include('slf4j-log4j12*') - include('log4j*jar') - include('*hamcrest*') - } from (configurations.runtimeClasspath) { exclude('kafka-clients*') }