Skip to content

Commit

Permalink
Merge pull request #313 from TrevCraw/update-ls-dependencies
Browse files Browse the repository at this point in the history
Update LCLS and LSP4Jakarta dependencies to latest releases
  • Loading branch information
TrevCraw authored Nov 16, 2023
2 parents ac30eaf + 42cd2ab commit d9c4b06
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ const download = require("gulp-download2");
const cp = require("child_process");

const libertyGroupId = "io.openliberty.tools";
const libertyVersion = "2.1-SNAPSHOT";
const libertyVersion = "2.1.1";
const jakartaGroupId = "org.eclipse.lsp4jakarta";
const jakartaVersion = "0.2.0-SNAPSHOT";
var releaseLevel = "snapshots"; //"snapshots"; //snapshots or releases
const jakartaVersion = "0.2.0";
var releaseLevel = "releases"; //"snapshots"; //snapshots or releases

const libertyLemminxName = "liberty-langserver-lemminx-" + libertyVersion + "-jar-with-dependencies.jar";
const libertyLemminxDir = "../liberty-language-server/lemminx-liberty";
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
],
"contributes": {
"javaExtensions": [
"./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.0-SNAPSHOT.jar"
"./jars/org.eclipse.lsp4jakarta.jdt.core-0.2.0.jar"
],
"xml.javaExtensions": [
"./jars/liberty-langserver-lemminx-2.1-SNAPSHOT-jar-with-dependencies.jar"
"./jars/liberty-langserver-lemminx-2.1.1-jar-with-dependencies.jar"
],
"views": {
"explorer": [
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import { prepareExecutable } from "./util/javaServerStarter";

const LIBERTY_CLIENT_ID = "LANGUAGE_ID_LIBERTY";
const JAKARTA_CLIENT_ID = "LANGUAGE_ID_JAKARTA";
export const LIBERTY_LS_JAR = "liberty-langserver-2.1-SNAPSHOT-jar-with-dependencies.jar";
export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.0-SNAPSHOT-jar-with-dependencies.jar";
export const LIBERTY_LS_JAR = "liberty-langserver-2.1.1-jar-with-dependencies.jar";
export const JAKARTA_LS_JAR = "org.eclipse.lsp4jakarta.ls-0.2.0-jar-with-dependencies.jar";

let libertyClient: LanguageClient;
let jakartaClient: LanguageClient;
Expand Down

0 comments on commit d9c4b06

Please sign in to comment.