diff --git a/gulpfile.js b/gulpfile.js index d2058ba5..539e277a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -17,7 +17,7 @@ const MC_SNAPSHOT_BASE_URL = "https://central.sonatype.com/repository/maven-snap const libertyGroupId = "io.openliberty.tools"; const libertyLemminxArtifactId = "liberty-langserver-lemminx"; const libertyLSArtifactId = "liberty-langserver"; -const libertyVersion = "2.3.1"; +const libertyVersion = "2.3.2"; const jakartaGroupId = "org.eclipse.lsp4jakarta"; const jakartaVersion = "0.2.3"; var lclsReleaseLevel = "releases"; //snapshots or releases diff --git a/package.json b/package.json index f87703fd..95094b00 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.3.jar" ], "xml.javaExtensions": [ - "./jars/liberty-langserver-lemminx-2.3.1-jar-with-dependencies.jar" + "./jars/liberty-langserver-lemminx-2.3.2-jar-with-dependencies.jar" ], "views": { "explorer": [ diff --git a/src/extension.ts b/src/extension.ts index bba77eaa..201e7270 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -25,7 +25,7 @@ import * as fs from "fs"; const LIBERTY_CLIENT_ID = "LANGUAGE_ID_LIBERTY"; const JAKARTA_CLIENT_ID = "LANGUAGE_ID_JAKARTA"; -export const LIBERTY_LS_JAR = "liberty-langserver-2.3.1-jar-with-dependencies.jar"; +export const LIBERTY_LS_JAR = "liberty-langserver-2.3.2-jar-with-dependencies.jar"; export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.3-jar-with-dependencies.jar"; let libertyClient: LanguageClient;