Skip to content

add directive jvm_classpath which supports wildcard character * #95

Closed
@xfeep

Description

@xfeep

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions