Class path "path/*.jar"
In earlier versions, all jar files had to be explicitly listed using the class path directive in the ini file. To reduce the number of these and the possibility of leaving one out, you can use path/*.jar. When this is used, all jar files in the specified path directory are added to the JVM class path. If the start directory is specified, then the relative "dot" path can be used.
For example, if all jar files must be in the directory my_jars located in the start directory, then ./my_jars/*.jar places all jar files on the class path. The order of the jar file names that replace this entry in the class path is not defined.