Closed
Description
e.g.
jvm_classpath '/opt/mylib/*:/opt/myclasses';
If if the directory /opt/mylib
contains a.jar, b.jar, and c.jar, then the class path /opt/mylib/*
will be expanded into /opt/mylib/a.jar:/opt/mylib/b.jar:/opt/mylib/c.jar
). So as the above example the result is /opt/mylib/a.jar:/opt/mylib/b.jar:/opt/mylib/c.jar:/opt/myclasses
which will be the value of the system property java.class.path, viz. it is equivalent to
jvm_options '-Djava.class.path=/opt/mylib/a.jar:/opt/mylib/b.jar:/opt/mylib/c.jar:/opt/myclasses';
This feature will make #94 be fixed mostly.