Skip to content

Commit db97a75

Browse files
committed
Use 1.10.0 released server
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent 4d501be commit db97a75

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
@@ -7,6 +7,7 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be
77
- Use Node 22 instead of Node 20
88
- Minimal version of VS Code is now 1.100
99
- Update default Camel version used for Camel JBang from 4.13.0 to 4.14.0
10+
- Upgrade embedded Debug Adapter for Apache Camel to 1.10.0
1011

1112
## 1.9.0
1213

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.10.0-SNAPSHOT';
3+
const dapServerVersion = '1.10.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)