Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2020-04-29 10:24:23 +0000
committerVikas Chandra2020-04-29 10:24:23 +0000
commitce1afa17ea56926d8ef163791713981d1eefa136 (patch)
tree5d5a39e469b467c16bb8135fd78267fff718aff8
parent5f74863e593045549c14a59689cdbaed0f34913a (diff)
downloadeclipse.pde.build-ce1afa17ea56926d8ef163791713981d1eefa136.tar.gz
eclipse.pde.build-ce1afa17ea56926d8ef163791713981d1eefa136.tar.xz
eclipse.pde.build-ce1afa17ea56926d8ef163791713981d1eefa136.zip
Bug 562603 - [15] Ensure PDE export works OK for a plugin project withY20200609-2100Y20200609-0150Y20200528-0030Y20200430-0210Y20200429-0730
Java15 Change-Id: I868d17c145d98e63f303b7ad7222bfa02c9cc2e0 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
-rw-r--r--org.eclipse.pde.build/src/org/eclipse/pde/internal/build/site/PDEState.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/site/PDEState.java b/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/site/PDEState.java
index 316ce95e..f6b29d7c 100644
--- a/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/site/PDEState.java
+++ b/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/site/PDEState.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2019 IBM Corporation and others.
+ * Copyright (c) 2004, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -31,7 +31,7 @@ import org.osgi.framework.*;
// This class provides a higher level API on the state
public class PDEState implements IPDEBuildConstants, IBuildPropertiesConstants {
private static final String[] MANIFEST_ENTRIES = {Constants.BUNDLE_LOCALIZATION, Constants.BUNDLE_NAME, Constants.BUNDLE_VENDOR, ECLIPSE_BUNDLE_SHAPE, ECLIPSE_SOURCE_BUNDLE, ECLIPSE_SOURCE_REF};
- private static int LAST_SUPPORTED_JDK = 14;
+ private static int LAST_SUPPORTED_JDK = 15;
private StateObjectFactory factory;
protected State state;
private long id;

Back to the top