eclipse: skip jRebel nature (IDEA-114956)

This commit is contained in:
anna
2013-10-21 15:14:27 +02:00
parent 38d2ec1915
commit 43b4bad033
2 changed files with 2 additions and 0 deletions
@@ -43,6 +43,7 @@ public interface EclipseXml {
@NonNls String JUNIT_CONTAINER = "org.eclipse.jdt.junit.JUNIT_CONTAINER";
@NonNls String GROOVY_DSL_CONTAINER = "GROOVY_DSL_SUPPORT";
@NonNls String GROOVY_SUPPORT = "GROOVY_SUPPORT";
@NonNls String JREBEL_NATURE = "org.zeroturnaround.eclipse.jrebelNature";
@NonNls String JUNIT3 = JUNIT_CONTAINER + "/" + "3.8.1";
@NonNls String JUNIT4 = JUNIT_CONTAINER + "/" + "4";
@NonNls String ECLIPSE_PLATFORM = "org.eclipse.pde.core.requiredPlugins";
@@ -43,6 +43,7 @@ public abstract class EclipseNatureImporter {
final Set<String> allCons = new HashSet<String>();
allCons.add(EclipseXml.GROOVY_SUPPORT);
allCons.add(EclipseXml.GROOVY_DSL_CONTAINER);
allCons.add(EclipseXml.JREBEL_NATURE);
for (EclipseNatureImporter provider : Extensions.getExtensions(EP_NAME)) {
allCons.addAll(provider.getProvidedCons());