// get a ref to an optional app props file (right next to the descriptor)
final File appPropsFile = new File(appDir, ApplicationDescriptor.DEFAULT_APP_PROPERTIES_RESOURCE);
setApplicationProperties(desc, appPropsFile);
final Set<PluginDescriptor> plugins = new PluginDescriptorParser(desc, appDir).parse();
desc.setPlugins(plugins);
return desc;
}