Skip to content

Commit

Permalink
Use released Camel server adapter 1.6.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 2f4674c commit 3a41045
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 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be
## 1.6.0

- Avoid potential activation error when no workspace/folder is opened
- Upgrade embedded Debug Adapter for Apache Camel to 1.6.0

## 1.5.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 dapServerVersion = '1.6.0-SNAPSHOT';
const dapServerVersion = '1.6.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-dap-server:' + dapServerVersion, './jars/', MAVEN_REPO_URL).then((filename)=>{
fs.renameSync(filename, path.join('.', 'jars', 'camel-dap-server.jar'));
Expand Down

0 comments on commit 3a41045

Please sign in to comment.