}
public void loadDependencies() {
Properties p = new Properties();
for (VirtualFile vf : Play.roots) {
VirtualFile conf = vf.child("conf/greenscript.conf");
if (conf.exists()) {
//info_("loading dependency configuration from %1$s", conf.getRealFile().getAbsolutePath());
try {
Properties p0 = new Properties();
p0.load(new BufferedInputStream(conf.inputstream()));
for (String k : p0.stringPropertyNames()) {
//info_("loading property: %s", k);
if (!p.containsKey(k)) {
info_("loading property for %s: %s", k, p0.get(k));
p.put(k, p0.get(k));