(SIGAR-213) check ENV.ANT_HOME/lib for junit in Main-Class
This commit is contained in:
parent
4227bf6ab9
commit
55002f1930
|
@ -182,6 +182,13 @@ public class Runner {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (missingJars()) {
|
||||
String home = System.getenv("ANT_HOME"); //check for junit.jar
|
||||
if (home != null) {
|
||||
addJarDir(home + "/lib");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Class cmd = null;
|
||||
|
|
Loading…
Reference in New Issue