Skip to content

Commit

Permalink
Use released Camel language server 1.29.0
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier committed Jan 22, 2025
1 parent 8d391d8 commit bf14ea2
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 @@ -8,6 +8,7 @@
- Update Camel Quarkus Catalog from 3.16.0 to 3.17.0
- Update default Camel version used for Camel JBang from 4.8.1 to 4.9.0
- Avoid potential NPE when VS Code is requesting Folding Ranges on a not opened document
- Use Language Server for Apache Camel 1.29.0

## 1.8.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.29.0-SNAPSHOT";
const LSP_SERVER_VERSION = "1.29.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 bf14ea2

Please sign in to comment.