Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2021-12-07 06:39:18 +0000
committerVikas Chandra2021-12-07 06:40:20 +0000
commit36230ebe29aee2e9aca24228648a4c4c5e27afd9 (patch)
treee4ba830fad65bdf2146f6db08ad24cbfb4fbb637
parentf94ce6cdba5d81662db378c0b8c543108189ff49 (diff)
downloadeclipse.pde.build-36230ebe29aee2e9aca24228648a4c4c5e27afd9.tar.gz
eclipse.pde.build-36230ebe29aee2e9aca24228648a4c4c5e27afd9.tar.xz
eclipse.pde.build-36230ebe29aee2e9aca24228648a4c4c5e27afd9.zip
Java 18 Change-Id: I163f4723b0ffee34c61eb6cd088c31f217bd9430 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/pde/eclipse.pde.build/+/188601
-rw-r--r--org.eclipse.pde.build/src/org/eclipse/pde/internal/build/site/PDEState.java6
1 files changed, 5 insertions, 1 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 770bfe75..08829d66 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
@@ -7,6 +7,10 @@
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
+ * This is an implementation of an early-draft specification developed under the Java
+ * Community Process (JCP) and is made available for testing and evaluation purposes
+ * only. The code is not compatible with any specification of the JCP.
+ *
*
* Contributors:
* IBM Corporation - initial API and implementation
@@ -31,7 +35,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 = 17;
+ private static int LAST_SUPPORTED_JDK = 18;
private StateObjectFactory factory;
protected State state;
private long id;

Back to the top