From d1315b07c94a68490c929c73753f5323728640ad Mon Sep 17 00:00:00 2001 From: Teodors Lisovenko Date: Tue, 7 Oct 2025 18:54:57 +0200 Subject: [PATCH] Fixing workflow in pipelines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All of a sudden, this fragment causes issues in the analysis execution, specifically in pipelines. Its removal resolves the problem, but I’m not sure if this reduction is acceptable. The issue was that all analysis concluded with following error: `class "org.eclipse.core.runtime.Plugin"'s signer information does not match signer information of other classes in the same package` --- jlisa/build.gradle.kts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/jlisa/build.gradle.kts b/jlisa/build.gradle.kts index 8dd176de1..fca7c579f 100644 --- a/jlisa/build.gradle.kts +++ b/jlisa/build.gradle.kts @@ -102,14 +102,6 @@ tasks.jar { ) } - from({ - configurations.runtimeClasspath.get().map { file -> - if (file.isDirectory) file - else zipTree(file).matching { - exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA") - } - } - }) duplicatesStrategy = DuplicatesStrategy.EXCLUDE // Run code style checks before packaging