You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,19 +33,23 @@ A VS Code extension for Open Liberty. The extension will detect your Liberty Mav
33
33
| View integration test report | Views the integration test report file. |
34
34
| View unit test report | Views the unit test report file. |
35
35
36
-
37
36
**Note:** Gradle projects only have a single `View test report` command.
38
37
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`.
| 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 |
48
43
44
+
### External Settings
45
+
The following settings provided by external extensions will be honoured when executing dev mode commands.
| 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
+
49
53
## Requirements
50
54
51
55
-[Tools for MicroProfile extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-microprofile)
0 commit comments