From 10f09d3d52236bcc130de93b45d7806b07f98176 Mon Sep 17 00:00:00 2001 From: Shawn Pearce Date: Sat, 16 Nov 2013 19:57:58 -0800 Subject: [PATCH] Require Java 7 Jetty 9 was built with compiler settings producing class files that are not recognized by Java 6 runtimes. Gerrit 2.9 will require Java 7 as its minimum runtime version. Change-Id: Ifed3f9e07bf77a7a737b16c20e6e400acd990649 --- tools/eclipse/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/eclipse/project.py b/tools/eclipse/project.py index 4707de5124..6e02c35a11 100755 --- a/tools/eclipse/project.py +++ b/tools/eclipse/project.py @@ -28,7 +28,7 @@ GWT = ['//gerrit-gwtui:ui_module'] JRE = '/'.join([ 'org.eclipse.jdt.launching.JRE_CONTAINER', 'org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType', - 'JavaSE-1.6', + 'JavaSE-1.7', ]) ROOT = path.abspath(__file__)