diff --git a/gulpfile.js b/gulpfile.js index e7192498..a9c0bd5f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -5,7 +5,7 @@ const cp = require("child_process"); const libertyGroupId = "io.openliberty.tools"; const libertyVersion = "2.2"; const jakartaGroupId = "org.eclipse.lsp4jakarta"; -const jakartaVersion = "0.2.1"; +const jakartaVersion = "0.2.2"; var releaseLevel = "releases"; //"snapshots"; //snapshots or releases const libertyLemminxName = "liberty-langserver-lemminx-" + libertyVersion + "-jar-with-dependencies.jar"; diff --git a/package.json b/package.json index 5be996df..c7845a11 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ ], "contributes": { "javaExtensions": [ - "./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.1.jar" + "./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.2.jar" ], "xml.javaExtensions": [ "./jars/liberty-langserver-lemminx-2.2-jar-with-dependencies.jar" diff --git a/src/extension.ts b/src/extension.ts index 91c31cb4..07a0a9bb 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -24,7 +24,7 @@ import * as helperUtil from "./util/helperUtil"; const LIBERTY_CLIENT_ID = "LANGUAGE_ID_LIBERTY"; const JAKARTA_CLIENT_ID = "LANGUAGE_ID_JAKARTA"; export const LIBERTY_LS_JAR = "liberty-langserver-2.2-jar-with-dependencies.jar"; -export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.1-jar-with-dependencies.jar"; +export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.2-jar-with-dependencies.jar"; let libertyClient: LanguageClient; let jakartaClient: LanguageClient;