[529955] Importing a Java Project into an EAR does not support anything
above Java 1.6
diff --git a/plugins/org.eclipse.jst.j2ee/META-INF/MANIFEST.MF b/plugins/org.eclipse.jst.j2ee/META-INF/MANIFEST.MF
index 4cb277f..03043e5 100644
--- a/plugins/org.eclipse.jst.j2ee/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.jst.j2ee/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %Bundle-Name.0
 Bundle-SymbolicName: org.eclipse.jst.j2ee; singleton:=true
-Bundle-Version: 1.2.200.qualifier
+Bundle-Version: 1.2.300.qualifier
 Bundle-Activator: org.eclipse.jst.j2ee.internal.plugin.J2EEPlugin
 Bundle-Vendor: %Bundle-Vendor.0
 Bundle-Localization: plugin
diff --git a/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/project/facet/JavaProjectMigrationOperation.java b/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/project/facet/JavaProjectMigrationOperation.java
index 6df1cd5..945e2b8 100644
--- a/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/project/facet/JavaProjectMigrationOperation.java
+++ b/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/project/facet/JavaProjectMigrationOperation.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2003, 2007 IBM Corporation and others.
+ * Copyright (c) 2003, 2018 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -20,7 +20,7 @@
 import org.eclipse.jdt.core.JavaCore;
 import org.eclipse.jem.workbench.utility.JemProjectUtilities;
 import org.eclipse.jst.common.project.facet.JavaFacetInstallDataModelProvider;
-import org.eclipse.jst.common.project.facet.JavaFacetUtils;
+import org.eclipse.jst.common.project.facet.core.JavaFacet;
 import org.eclipse.jst.j2ee.internal.plugin.IJ2EEModuleConstants;
 import org.eclipse.jst.j2ee.internal.plugin.J2EEPlugin;
 import org.eclipse.jst.j2ee.internal.project.J2EEProjectUtilities;
@@ -90,12 +90,18 @@
 		String jdtVersion = jProj.getOption(JavaCore.COMPILER_COMPLIANCE, true );
 		
 		if (jdtVersion.startsWith("1.3")) { //$NON-NLS-1$
-			return JavaFacetUtils.JAVA_13;
+			return JavaFacet.VERSION_1_3;
 		} else if (jdtVersion.startsWith("1.4")) { //$NON-NLS-1$
-			return JavaFacetUtils.JAVA_14;
+			return JavaFacet.VERSION_1_4;
 		}else if (jdtVersion.startsWith("1.5")) { //$NON-NLS-1$
-			return JavaFacetUtils.JAVA_50;
+			return JavaFacet.VERSION_1_5;
+		}else if (jdtVersion.startsWith("1.6")) { //$NON-NLS-1$
+			return JavaFacet.VERSION_1_6;
+		}else if (jdtVersion.startsWith("1.7")) { //$NON-NLS-1$
+			return JavaFacet.VERSION_1_7;
+		}else if (jdtVersion.startsWith("1.8")) { //$NON-NLS-1$
+			return JavaFacet.VERSION_1_8;
 		}
-		return JavaFacetUtils.JAVA_60;	
+		return JavaFacet.VERSION_9;
 	}
 }
diff --git a/plugins/org.eclipse.jst.j2ee/pom.xml b/plugins/org.eclipse.jst.j2ee/pom.xml
index e96805f..1e6c424 100644
--- a/plugins/org.eclipse.jst.j2ee/pom.xml
+++ b/plugins/org.eclipse.jst.j2ee/pom.xml
@@ -21,6 +21,6 @@
 
   <groupId>org.eclipse.webtools.javaee</groupId>
   <artifactId>org.eclipse.jst.j2ee</artifactId>
-  <version>1.2.200-SNAPSHOT</version>
+  <version>1.2.300-SNAPSHOT</version>
   <packaging>eclipse-plugin</packaging>
 </project>