Open ncollier opened 2 months ago
Groovy jar is: groovy-3.0.21-indy.jar
and we use a regex to find it -
private static final String VNUM_REGEX = "(\\d+\\.)(\\d+\\.)(\\d)";
private static final String INDY_REGEX = "groovy-" + VNUM_REGEX + "-indy.jar";
The regex needs additional "+" on the last "d".
private static final String VNUM_REGEX = "(\\d+\\.)(\\d+\\.)(\\d+)";
New batch runner jar with updated regex is attached batch_runner.jar.zip
This finds the groovy libraries but there seems to be an issue with the jvm --add-export args not being used. Continue testing.
Stand alone batch runner run can't find the groovy jar