Append a single or multiple jars to the class path.
Just replaces the old internal class loader with a new one containing the new jars.
This doesn't check if the jars are valid and/or even exist.
The new classpath will be available to all classes imported after this call.
If you want to import whole directories, you can use glob patterns.
// Append a directory to the class path appendClasspath('/path/to/dir/*'); // Append just the jar files in the directory appendClasspath('/path/to/dir/*.jar');
Append a single or multiple jars to the class path.
Just replaces the old internal class loader with a new one containing the new jars. This doesn't check if the jars are valid and/or even exist. The new classpath will be available to all classes imported after this call.
If you want to import whole directories, you can use glob patterns.
Example
Append single files
or
Append a directory to the class path