Skip to content

Commit 84ae6dc

Browse files
authored
Merge pull request OpenLiberty#562 from mattbsox/update-25.0.11
Update LS dependencies to new release versions
2 parents fd90873 + a8119f3 commit 84ae6dc

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ const MC_SNAPSHOT_BASE_URL = "https://central.sonatype.com/repository/maven-snap
1717
const libertyGroupId = "io.openliberty.tools";
1818
const libertyLemminxArtifactId = "liberty-langserver-lemminx";
1919
const libertyLSArtifactId = "liberty-langserver";
20-
const libertyVersion = "2.3.2";
20+
const libertyVersion = "2.4";
2121
const jakartaGroupId = "org.eclipse.lsp4jakarta";
22-
const jakartaVersion = "0.2.3";
22+
const jakartaVersion = "0.2.5";
2323
var lclsReleaseLevel = "releases"; //snapshots or releases
2424
var jakartaReleaseLevel = "releases";
2525

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "liberty-dev-vscode-ext",
33
"displayName": "Liberty Tools",
44
"description": "Liberty Tools for Visual Studio Code",
5-
"version": "25.0.8",
5+
"version": "25.0.11-SNAPSHOT",
66
"publisher": "Open-Liberty",
77
"repository": {
88
"type": "git",
@@ -50,10 +50,10 @@
5050
],
5151
"contributes": {
5252
"javaExtensions": [
53-
"./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.3.jar"
53+
"./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.5.jar"
5454
],
5555
"xml.javaExtensions": [
56-
"./jars/liberty-langserver-lemminx-2.3.2-jar-with-dependencies.jar"
56+
"./jars/liberty-langserver-lemminx-2.4-jar-with-dependencies.jar"
5757
],
5858
"views": {
5959
"explorer": [

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const JAVA_EXTENSION_ID = "redhat.java";
2121

2222
const LIBERTY_CLIENT_ID = "LANGUAGE_ID_LIBERTY";
2323
const JAKARTA_CLIENT_ID = "LANGUAGE_ID_JAKARTA";
24-
export const LIBERTY_LS_JAR = "liberty-langserver-2.3.2-jar-with-dependencies.jar";
25-
export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.3-jar-with-dependencies.jar";
24+
export const LIBERTY_LS_JAR = "liberty-langserver-2.4-jar-with-dependencies.jar";
25+
export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.5-jar-with-dependencies.jar";
2626

2727
let libertyClient: LanguageClient;
2828
let jakartaClient: LanguageClient;

0 commit comments

Comments
 (0)