Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading