Skip to content

Commit

Permalink
Use released 1.28.0 Camel Language Server
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Pupier <apupier@redhat.com>
  • Loading branch information
apupier committed Dec 5, 2024
1 parent f8221b9 commit 27245c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -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)=>{
Expand Down

0 comments on commit 27245c5

Please sign in to comment.