createInclude().setName("**/org.eclim.core_*/**/*");
createInclude().setName("**/org.eclim.vimplugin/**/*");
createInclude().setName("**/org.eclim.vimplugin_*/**/*");
// feature based includes
InstallContext context = Installer.getContext();
String[] keys = context.getKeysByPrefix("featureList");
for (int ii = 0; ii < keys.length; ii++){
String key = keys[ii];
Boolean value = Boolean.valueOf(context.getValue(key).toString());
if(value.booleanValue()){
createFeatureIncludes(key);
// handle per version features by removing the version suffix.
Matcher matcher = VERSIONED.matcher(key);