From 9ffe8c3e78f634eb81b862372970f481c9d0d704 Mon Sep 17 00:00:00 2001 From: Curtis Rueden Date: Thu, 9 May 2024 14:13:25 -0500 Subject: [PATCH] Fiji: generalize classpath inclusion rule There are other subfolders beneath the jars folder, specifically the platform-specific folders. For now, we simply include all of them, even though it's hacky. --- configs/fiji.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/fiji.toml b/configs/fiji.toml index be6570a..7571c82 100644 --- a/configs/fiji.toml +++ b/configs/fiji.toml @@ -128,7 +128,7 @@ jvm.version-min = '21' jvm.classpath = [ '--full-classpath|${app-dir}/jars/*.jar', - '--full-classpath|${app-dir}/jars/bio-formats/*.jar', + '--full-classpath|${app-dir}/jars/*/*.jar', '--full-classpath|${app-dir}/plugins/*.jar', '!--full-classpath|${app-dir}/jars/imagej-launcher*.jar', '--main-class|.', # Weird behavior, but it's what the ImageJ Launcher does.