Subject: | Missed on hard-coded classpath_separater |
in import method, should use:
require Inline;
Inline->import(
Java => 'STUDY',
STUDY => \@STUDY,
AUTOSTUDY => 1,
CLASSPATH => collect_default_jars() . $classpath_separator .
$custom_jars,
%parameters
);
rather than
require Inline;
Inline->import(
Java => 'STUDY',
STUDY => \@STUDY,
AUTOSTUDY => 1,
CLASSPATH => collect_default_jars() . ':' . $custom_jars,
%parameters
);