From e15a299196c27a504bf452ab81d8fed5713f76bf Mon Sep 17 00:00:00 2001 From: Vyacheslav Gerasimov Date: Fri, 2 Jun 2023 12:38:11 +0200 Subject: [PATCH] Build: Add Mozilla jshell to `implicitDependencies` #KTI-72 --- wasm/wasm.tests/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wasm/wasm.tests/build.gradle.kts b/wasm/wasm.tests/build.gradle.kts index fc9191be203..4eec0fb2f1e 100644 --- a/wasm/wasm.tests/build.gradle.kts +++ b/wasm/wasm.tests/build.gradle.kts @@ -67,6 +67,10 @@ dependencies { testApi(intellijCore()) jsShell("org.mozilla:jsshell:$jsShellVersion:$jsShellSuffix@zip") + + implicitDependencies("org.mozilla:jsshell:$jsShellVersion:win64@zip") + implicitDependencies("org.mozilla:jsshell:$jsShellVersion:linux-x86_64@zip") + implicitDependencies("org.mozilla:jsshell:$jsShellVersion:mac@zip") } val generationRoot = projectDir.resolve("tests-gen")