use of org.eclipse.equinox.p2.metadata.MetadataFactory.InstallableUnitDescription in project tycho by eclipse.
the class InstallableUnitUtil method createFeatureIU.
public static IInstallableUnit createFeatureIU(String featureId, String version) {
InstallableUnitDescription description = createIuDescription(featureId + ".feature.group", version);
description.setProperty(FEATURE_TYPE_PROPERTY, Boolean.toString(true));
return MetadataFactory.createInstallableUnit(description);
}
Aggregations