I\'m trying to run a particular JUnit test by hand on a Windows XP command line, which has an unusually high number of elements in the class path. I\'ve tried several varia
Have you tried stacking them?
set CLASS_PATH = c:\path set ALT_A = %CLASS_PATH%\a\b\c; set ALT_B = %CLASS_PATH%\e\f\g; ... set ALL_PATHS = %CLASS_PATH%;%ALT_A%;%ALT_B%