From 6efe80a88dd7e0956270c6999750e8be28323b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Thu, 20 Jun 2024 17:17:12 +0200 Subject: [PATCH] chore: add Kestra libs used in tests in the platform --- platform/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platform/build.gradle b/platform/build.gradle index 8572956481..f9f0dd04a8 100644 --- a/platform/build.gradle +++ b/platform/build.gradle @@ -117,6 +117,10 @@ dependencies { api "io.kestra:model:$version" api "io.kestra:script:$version" api "io.kestra:processor:$version" + // the following are used in plugin tests so they are in the platform even if normally not used out there + api "io.kestra:repository-memory:$version" + api "io.kestra:runner-memory:$version" + api "io.kestra:storage-local:$version" } }