applicationContext.refresh();
}
public static MavenArtifactProvisionOption getFeaturesUrl(String groupId, String artifactId, String version) {
MavenArtifactProvisionOption mapo = mavenBundle().groupId(groupId).artifactId(artifactId);
mapo.type("xml");
mapo.classifier("features");
if (version == null) {
mapo.versionAsInProject();
} else {