*
* @param classpathFile the classpath file name
* @throws Exception the exception
*/
public void loadDependencies(File classpathFile) throws Exception {
ClassRealm classRealm = getMainRealm();
BufferedReader reader = new BufferedReader(new FileReader(classpathFile));
boolean done1 = false;
while (!done1) {
String line = reader.readLine();
if (line == null) {
done1 = true;
} else {
boolean done2 = false;
while (!done2) {
int index1 = line.indexOf("${");
if (index1 == -1) {
done2 = true;
} else {
int index2 = line.substring(index1 + 1).indexOf("}");
if (index2 == -1) {
done2 = true;
} else {
String propertyName = line.substring(index1 + 2, index2 + 1);
String property = System.getProperty(propertyName);
if (property == null) {
line = line.substring(0, index1) + "?" + propertyName + "?" + line.substring(index2 + 2);
System.out.println("This property is not specified: " + propertyName + ".");
} else {
line = line.substring(0, index1) + property + line.substring(index2 + 2);
}
}
}
}
classRealm.addConstituent(new File(line).toURI().toURL());
}
}
}