https://bz.apache.org/bugzilla/show_bug.cgi?id=63261
UbikLoadPack support <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |FIXED --- Comment #3 from UbikLoadPack support <[email protected]> --- (In reply to yan.an from comment #2) > Hi, > I downloaded the latest version of jmeter 5.1.1 > In jmeter.properties, here is: > # List of directories that JMeter will search for utility and plugin > dependency classes. > # Use your platform path separator to separate multiple paths. > # Any jar file in such a directory will be automatically included, > # jar files in sub directories are ignored. > # The given value is in addition to any jars found in the lib directory. > # All entries will be added to the class path of the system class loader > # and also to the path of the JMeter internal loader. > # Paths with spaces may cause problems for the JVM > # user.classpath=../classes;../lib > > where show the separator should be ":" ??? > > Evne that i changed the separator to :, but in windows, all the jars put in > the classpath can't be loaded. > > Do you really sure the separator has changed to : ? # Use your platform path separator (java.io.File.pathSeparatorChar in Java) to separate multiple paths ... Properties override happens usually in user.properties, look there: #Example for windows (; separator) #user.classpath=../classes;../lib;../app1/jar1.jar;../app2/jar2.jar #Example for linux (:separator) #user.classpath=../classes:../lib:../app1/jar1.jar:../app2/jar2.jar It should probably be aligned in jmeter.properties. Regards -- You are receiving this mail because: You are the assignee for the bug.
