use of aQute.bnd.connection.settings.SettingsParser in project bnd by bndtools.
the class SettingsParserTest method getSettings.
public SettingsDTO getSettings(String name) throws Exception {
File f = aQute.lib.io.IO.getFile("testresources/" + name);
SettingsParser msp = new SettingsParser(f);
SettingsDTO settings = msp.getSettings();
return settings;
}
Aggregations