Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.9.0

- Update default Camel version used for Camel JBang from 4.12.0 to 4.13.0
- Upgrade embedded Debug Adapter for Apache Camel to 1.9.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,14 +1,14 @@
'use strict';

const dapServerVersion = '1.9.0-SNAPSHOT';
const dapServerVersion = '1.9.0';

const download = require('mvn-artifact-download').default;
const fs = require('fs');
const path = require('path');

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

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
Loading