Skip to content

Commit 706c085

Browse files
authored
chore: Prepare for 0.18.6 (#530)
1 parent 8bb3ad6 commit 706c085

File tree

9 files changed

+20
-8
lines changed

9 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to the "vscode-java-dependency" extension will be documented
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 0.18.6
8+
9+
### Changed
10+
- Set the output path to `bin` by default when creating projects without build tools. [#523](https://github.com/microsoft/vscode-java-dependency/issues/523)
11+
12+
### Fixed
13+
- [Bugs fixed](https://github.com/microsoft/vscode-java-dependency/issues?q=is%3Aissue+label%3Abug+milestone%3A0.18.6+is%3Aclosed)
14+
715
## 0.18.5
816
### Fixed
917
- [Bugs fixed](https://github.com/microsoft/vscode-java-dependency/issues?q=is%3Aissue+label%3Abug+milestone%3A0.18.5+is%3Aclosed)

jdtls.ext/com.microsoft.jdtls.ext.activator/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: JDTLS EXT Activator
44
Bundle-SymbolicName: com.microsoft.jdtls.ext.activator;singleton:=true
5-
Bundle-Version: 0.18.5
5+
Bundle-Version: 0.18.6
66
Bundle-Activator: com.microsoft.jdtls.ext.activator.JdtlsExtActivator
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Import-Package: org.eclipse.jdt.core,

jdtls.ext/com.microsoft.jdtls.ext.activator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.jdtls.ext</groupId>
77
<artifactId>jdtls-ext-parent</artifactId>
8-
<version>0.18.5</version>
8+
<version>0.18.6</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.activator</artifactId>
1111
<packaging>eclipse-plugin</packaging>

jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: JDTLS EXT Core
44
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
5-
Bundle-Version: 0.18.5
5+
Bundle-Version: 0.18.6
66
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Bundle-ActivationPolicy: lazy

jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.jdtls.ext</groupId>
77
<artifactId>jdtls-ext-parent</artifactId>
8-
<version>0.18.5</version>
8+
<version>0.18.6</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

jdtls.ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.jdtls.ext</groupId>
55
<artifactId>jdtls-ext-parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.18.5</version>
7+
<version>0.18.6</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Project Manager</base.name>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-java-dependency",
33
"displayName": "Project Manager for Java",
44
"description": "%description%",
5-
"version": "0.18.5",
5+
"version": "0.18.6",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@@ -37,7 +37,7 @@
3737
"main": "./main.js",
3838
"contributes": {
3939
"javaExtensions": [
40-
"./server/com.microsoft.jdtls.ext.core-0.18.5.jar"
40+
"./server/com.microsoft.jdtls.ext.core-0.18.6.jar"
4141
],
4242
"commands": [
4343
{

test/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ async function main(): Promise<void> {
2929
extensionTestsPath: path.resolve(__dirname, "./suite"),
3030
launchArgs: [
3131
path.join(__dirname, "..", "..", "test", "java9"),
32+
"--disable-workspace-trust",
3233
],
3334
});
3435

@@ -39,6 +40,7 @@ async function main(): Promise<void> {
3940
extensionTestsPath: path.resolve(__dirname, "./simple-suite"),
4041
launchArgs: [
4142
path.join(__dirname, "..", "..", "test", "simple"),
43+
"--disable-workspace-trust",
4244
],
4345
});
4446

@@ -49,6 +51,7 @@ async function main(): Promise<void> {
4951
extensionTestsPath: path.resolve(__dirname, "./maven-suite"),
5052
launchArgs: [
5153
path.join(__dirname, "..", "..", "test", "maven"),
54+
"--disable-workspace-trust",
5255
],
5356
});
5457

@@ -59,6 +62,7 @@ async function main(): Promise<void> {
5962
extensionTestsPath: path.resolve(__dirname, "./gradle-suite"),
6063
launchArgs: [
6164
path.join(__dirname, "..", "..", "test", "gradle"),
65+
"--disable-workspace-trust",
6266
],
6367
});
6468

0 commit comments

Comments
 (0)