in src/main/java/org/apache/openejb/tools/release/Release.java [69:99]
static {
try {
Settings.Load.main();
} catch (final IOException e) {
e.printStackTrace();
}
final File public_html = Files.file(System.getProperty("user.home"), "public_html");
if (public_html.exists()) {
builddir = public_html.getAbsolutePath();
}
final Map<String, Object> map = map();
final Options options = new Options(System.getProperties());
boolean interpolating = true;
while (interpolating) {
interpolating = false;
for (final Map.Entry<String, Object> entry : map.entrySet()) {
final Object value = options.get(entry.getKey(), entry.getValue());
final String raw = value.toString();
final String formatted = format(raw, map, options);
if (!raw.equals(formatted)) interpolating = true;
entry.setValue(formatted);
}
}
}