Skip to content

Commit

Permalink
Using Java 17 as default instead of Java 1.8 in the
Browse files Browse the repository at this point in the history
org.eclipse.pde.ui.templates.tests

As we require Java 17 in the latest release, seems reasonable to set
this also as default for the tests.
  • Loading branch information
vogella committed Sep 22, 2023
1 parent 50803ee commit aab58ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private static void createProjectWithTemplate()
data.setHasBundleStructure(true);
data.setSourceFolderName("src");
data.setOutputFolderName("bin");
data.setExecutionEnvironment("JavaSE-1.8");
data.setExecutionEnvironment("JavaSE-17");
String version = System.getProperty("java.specification.version"); //$NON-NLS-1$
int ver = -1;
try {
Expand Down

0 comments on commit aab58ad

Please sign in to comment.