diff --git a/Changelog.md b/Changelog.md index 1ca67961..f0458e7f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,6 +5,7 @@ - Provide folder selection when using `Create Camel Quarkus/SpringBoot Project` command - Avoid being notified for package.json opening and close as no support is provided for it and every 2 minutes there is a notification for these files - Fix to not have Camel Language Server shutdowned on new action after being opened overnight when Java temporary folder contains a folder without access rights to VS Code +- Use Language Server for Apache Camel 1.28.0 ## 1.7.0 diff --git a/scripts/postinstall.js b/scripts/postinstall.js index e1e24874..941c1cbc 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,12 +1,12 @@ 'use strict'; -const LSP_SERVER_VERSION = "1.28.0-SNAPSHOT"; +const LSP_SERVER_VERSION = "1.28.0"; const download = require("mvn-artifact-download").default; const fs = require('fs'); const path = require('path'); -const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/snapshots/'; +const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/releases/'; download('com.github.camel-tooling:camel-lsp-server:' + LSP_SERVER_VERSION, './jars/', MAVEN_REPO_URL).then((filename)=>{