From b7d9a34a22b6155cfd783a4ceac7db6dab86d72b Mon Sep 17 00:00:00 2001 From: Giuseppe Villani Date: Wed, 26 Jul 2023 10:44:43 +0200 Subject: [PATCH] Exclude :core:shadowJar task from extended (#3597) (#3693) --- settings.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index d67f96833e..1179210b8b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -19,5 +19,9 @@ startParameter.excludedTaskNames = [ ':test-utils:test', ':core:publish', ':common:publish', - ':test-utils:publish' + ':test-utils:publish', + // the :core:shadowJar should be used only for integration tests with both core and extended jars + // e.g. StartupExtendedTest, where the core jar is created by executing `shadowJar` directly in the `apoc-core` + // not when a `gradle shadow` or a `gradle build` is executed in this root project folder + ':core:shadowJar' ] \ No newline at end of file