Skip to content

Commit f7a6dbb

Browse files
committed
Use Debug Server adapter 1.9.0
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent bbcbff5 commit f7a6dbb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be
55
## 1.9.0
66

77
- Update default Camel version used for Camel JBang from 4.12.0 to 4.13.0
8+
- Upgrade embedded Debug Adapter for Apache Camel to 1.9.0
89

910
## 1.8.0
1011

scripts/postinstall.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
'use strict';
22

3-
const dapServerVersion = '1.9.0-SNAPSHOT';
3+
const dapServerVersion = '1.9.0';
44

55
const download = require('mvn-artifact-download').default;
66
const fs = require('fs');
77
const path = require('path');
88

99
// Released versions: https://repo1.maven.org/maven2/
1010
// Snapshot versions: https://central.sonatype.com/repository/maven-snapshots/
11-
const MAVEN_REPO_URL = 'https://central.sonatype.com/repository/maven-snapshots/';
11+
const MAVEN_REPO_URL = 'https://repo1.maven.org/maven2/';
1212

1313
download('com.github.camel-tooling:camel-dap-server:' + dapServerVersion, './jars/', MAVEN_REPO_URL).then((filename)=>{
1414
fs.renameSync(filename, path.join('.', 'jars', 'camel-dap-server.jar'));

0 commit comments

Comments
 (0)