Skip to content

Commit 93cdaa4

Browse files
Bump version to 0.1.10 (#83)
* 0.1.10 Signed-off-by: Kathryn Kodama <kathryn.s.kodama@gmail.com> * Detail wrapper commands in a table Signed-off-by: Kathryn Kodama <kathryn.s.kodama@gmail.com>
1 parent f034aba commit 93cdaa4

4 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
All notable changes to the Open Liberty Tools extension will be documented below.
44

5+
## 0.1.10
6+
- Honour Maven and Gradle wrapper settings when running dev mode
7+
58
## 0.1.9
69
- Removed "tech preview" wording from "Start in container" action
710

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,23 @@ A VS Code extension for Open Liberty. The extension will detect your Liberty Mav
3333
| View integration test report | Views the integration test report file. |
3434
| View unit test report | Views the unit test report file. |
3535

36-
3736
**Note:** Gradle projects only have a single `View test report` command.
3837

39-
**Build Wrappers:**
40-
- Maven commands will honour the `maven.executable.path` setting. If this value is empty, Maven commands will attempt to use `mvn` or `mvnw` according to the `maven.executable.preferMavenWrapper` setting. Both of these settings are made available by the [Maven for Java extension](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven).
41-
- Gradle commands will honour the `java.import.gradle.wrapper.enabled` setting made available by the [Language support for Java extension](https://marketplace.visualstudio.com/items?itemName=redhat.java). If this setting is true, Gradle commands will attempt to use `gradlew` if a wrapper exists for the current project, otherwise will default to `gradle`.
42-
4338
## Configurable User Settings
4439

4540
| Setting | Description | Default Value |
4641
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
4742
| liberty.terminal.useJavaHome | If this value is true, and if the setting `java.home` has a value, then the environment variable `JAVA_HOME` will be set to the value of `java.home` when a new terminal window is created. | False |
4843

44+
### External Settings
45+
The following settings provided by external extensions will be honoured when executing dev mode commands.
46+
47+
| Setting | Description | Provided By |
48+
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
49+
| maven.executable.path | Maven commands executed by dev mode will honour this setting. When this value is empty, it tries to use `mvn` or `mvnw` accroding to the value of `maven.executable.preferMavenWrapper`. | [Maven for Java extension](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven) |
50+
| maven.executable.preferMavenWrapper | Maven commands executed by dev mode will honour this setting. If true, it tries to use `mvnw` if a Maven wrapper file can be found. Otherwise it will use `mvn`. | [Maven for Java extension](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven) |
51+
| java.import.gradle.wrapper.enabled | Gradle commands executed by dev mode will honour this setting. If true, it tries to use `gradlew` if a Gradle wrapper file can be found. Otherwise it will use `gradle`. | [Language support for Java extension](https://marketplace.visualstudio.com/items?itemName=redhat.java) |
52+
4953
## Requirements
5054

5155
- [Tools for MicroProfile extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-microprofile)

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "liberty-dev-vscode-ext",
33
"displayName": "Open Liberty Tools",
44
"description": "Open Liberty Tools for Visual Studio Code",
5-
"version": "0.1.9",
5+
"version": "0.1.10",
66
"publisher": "Open-Liberty",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)