Skip to content

Commit 37b003c

Browse files
authored
GLSP-1127: Update to Java17 as minimum version (#91)
Fixes eclipse-glsp/glsp/issues/1127
1 parent 14e5a20 commit 37b003c

File tree

14 files changed

+421
-450
lines changed

14 files changed

+421
-450
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ jobs:
4242
steps:
4343
- name: Checkout repository
4444
uses: actions/checkout@v2
45+
46+
- uses: actions/setup-java@v1
47+
with:
48+
java-version: 17
49+
4550

4651
# Initializes the CodeQL tools for scanning.
4752
- name: Initialize CodeQL

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: Pod
44
spec:
55
containers:
66
- name: ci
7-
image: eclipseglsp/ci:alpine-v4.0
7+
image: eclipseglsp/ci:alpine-v5.0
88
resources:
99
limits:
1010
memory: "2Gi"

client/examples/workflow-webapp/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"extends": "@eclipse-glsp/ts-config/tsconfig.json",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "lib",
6-
"baseUrl": "."
5+
"outDir": "lib"
76
},
87
"include": ["src"]
98
}

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"watch": "lerna run --parallel watch"
2424
},
2525
"devDependencies": {
26-
"@eclipse-glsp/dev": "next",
26+
"@eclipse-glsp/dev": "^1.1.0-next.cbae4df.145",
2727
"@types/node": "16.x",
2828
"copyfiles": "^2.4.1",
2929
"inversify": "6.0.1",

client/packages/ide/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
2-
"extends": "@eclipse-glsp/ts-config/tsconfig.json",
2+
"extends": "@eclipse-glsp/ts-config",
33
"compilerOptions": {
44
"rootDir": "src",
5-
"outDir": "lib",
6-
"baseUrl": "."
5+
"outDir": "lib"
76
},
87
"include": ["src"]
98
}

client/yarn.lock

Lines changed: 401 additions & 434 deletions
Large diffs are not rendered by default.

server/example/org.eclipse.glsp.ide.workflow.editor/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
44
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
55
<classpathentry kind="src" path="src/"/>
66
<classpathentry kind="output" path="target/classes"/>

server/example/org.eclipse.glsp.ide.workflow.editor/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ Import-Package: javax.servlet;version="[4.0.0,5.0.0)",
3232
Eclipse-BundleShape: dir
3333
Automatic-Module-Name: com.eclipsesource.glsp.example.workflow
3434
Bundle-ActivationPolicy: lazy
35-
Bundle-RequiredExecutionEnvironment: JavaSE-11
35+
Bundle-RequiredExecutionEnvironment: JavaSE-17

server/example/org.eclipse.glsp.ide.workflow.editor/WorkflowEditor.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
2121
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
2222
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
23-
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
23+
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
2424
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl} -consoleLog"/>
2525
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/>
2626
<booleanAttribute key="pde.generated.config" value="false"/>

server/plugins/org.eclipse.glsp.ide.editor/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17"/>
44
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
55
<classpathentry kind="src" path="src/"/>
66
<classpathentry kind="output" path="target/classes"/>

0 commit comments

Comments
 (0)