If in the manifest for a jar file that needs to load non executable jars, I have the Class-Path:
specification and then a directory holding the jars as the class path instead of a jar file. Will the manifest then load the whole directory or will it just fail?
Update:
I tried to use Class-Path: foo/*
however it failed to load the foo directory. Does the manifest classpath not support regex>