From fd7d457967a2c593e13678d50960c7bce060243b Mon Sep 17 00:00:00 2001 From: deepgarg-visa <149145061+deepgarg-visa@users.noreply.github.com> Date: Tue, 27 Aug 2024 20:51:58 +0530 Subject: [PATCH] =?UTF-8?q?fix(spark-lineage):=20exclude=20log4j.xml=20and?= =?UTF-8?q?=20log4j2.xml=20from=20openlineage=E2=80=A6=20(#11239)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- metadata-integration/java/openlineage-converter/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/metadata-integration/java/openlineage-converter/build.gradle b/metadata-integration/java/openlineage-converter/build.gradle index 145a88229a..6783d300a5 100644 --- a/metadata-integration/java/openlineage-converter/build.gradle +++ b/metadata-integration/java/openlineage-converter/build.gradle @@ -41,6 +41,11 @@ test { useJUnit() finalizedBy jacocoTestReport } +shadowJar { + zip64 = true + archiveClassifier = '' + exclude('log4j2.*', 'log4j.*') +} //task sourcesJar(type: Jar) { // classifier 'sources'