From 114936a447d019e908eaa7192572138589d3b5b0 Mon Sep 17 00:00:00 2001 From: ravinperera00 Date: Mon, 16 Sep 2024 12:47:50 +0530 Subject: [PATCH] Add exclude statement to integration tests --- tests/jballerina-integration-test/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/jballerina-integration-test/build.gradle b/tests/jballerina-integration-test/build.gradle index 6ffed59f504c..a6673e192c36 100644 --- a/tests/jballerina-integration-test/build.gradle +++ b/tests/jballerina-integration-test/build.gradle @@ -192,6 +192,12 @@ clean.doFirst { description = 'Ballerina - Integration Test' +configurations { + testCompile.exclude group: 'org.slf4j', module: 'slf4j-log4j12' + testCompile.exclude group: 'org.slf4j', module: 'slf4j-simple' + testCompile.exclude group: 'org.ops4j.pax.logging', module: 'pax-logging-api' +} + configurations.all { resolutionStrategy.preferProjectModules() }