Skip to content

Commit

Permalink
Upgrade embedded Debug Adapter for Apache Camel to 1.3.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 Sep 3, 2024
1 parent 7ec3867 commit 5ad4afc
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 @@ -6,6 +6,7 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be

- Provide command and quick action to run with JBang from paretn folder of current opened file
- Grouped run and debug quick editor action in the `Run or debug...` quick editor action
- Upgrade embedded Debug Adapter for Apache Camel to 1.3.0

## 1.2.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.3.0-SNAPSHOT';
const dapServerVersion = '1.3.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 5ad4afc

Please sign in to comment.