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: Configuration.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@
23
23
*[Modify the settings.json (User Setting)](#modify-the-settingsjson-user-setting)
24
24
* java.debug.settings.console
25
25
* java.debug.settings.forceBuildBeforeLaunch
26
+
* java.debug.settings.onBuildFailureProceed
26
27
* java.debug.settings.hotCodeReplace
27
28
* java.debug.settings.enableRunDebugCodeLens
28
29
*[FAQ](#faq)
@@ -329,6 +330,8 @@ In some cases, you may want to start your program with the external builder and
329
330
330
331
- `java.debug.settings.forceBuildBeforeLaunch` - Force building the workspace before launching java program, defaults to `true`. Sometimes you may be bothered with the message *"Build failed, do you want to continue?"*, you could disable this setting to suppress the message.
331
332
333
+
- `java.debug.settings.onBuildFailureProceed` - Sometimes you may be bothered with the message *"Build failed, do you want to continue?"*, you could use this setting to suppress the message and proceed.
334
+
332
335
- `java.debug.settings.hotCodeReplace` - Reload the changed Java classes during debugging, defaults to `manual`. It supports `manual`, `auto`, `never`.
333
336
- `manual` - Click the toolbar to apply the changes.
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,7 @@ Please also check the documentation of [Language Support for Java by Red Hat](ht
108
108
- never - Never apply the changes.
109
109
-`java.debug.settings.enableRunDebugCodeLens`: enable the code lens provider for the run and debug buttons over main entry points, defaults to `true`.
110
110
-`java.debug.settings.forceBuildBeforeLaunch`: force building the workspace before launching java program, defaults to `true`.
111
+
-`java.debug.settings.onBuildFailureProceed`: Force to proceed when build fails, defaults to false.
111
112
-`java.debug.settings.console`: The specified console to launch Java program, defaults to `integratedTerminal`. If you want to customize the console for a specific debug session, please modify the 'console' config in launch.json.
112
113
-`internalConsole` - VS Code debug console (input stream not supported).
113
114
-`integratedTerminal` - VS Code integrated terminal.
Copy file name to clipboardExpand all lines: package.nls.json
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@
53
53
"java.debugger.configuration.hotCodeReplace.description": "Reload the changed Java classes during debugging. Make sure 'java.autobuild.enabled' is not disabled.",
54
54
"java.debugger.configuration.enableRunDebugCodeLens.description": "Enable the run and debug code lens providers over main methods.",
55
55
"java.debugger.configuration.forceBuildBeforeLaunch": "Force building the workspace before launching java program.",
56
+
"java.debugger.configuration.onBuildFailureProceed": "Force to proceed when build fails",
56
57
"java.debugger.configuration.console": "The specified console to launch Java program. If you want to customize the console for a specific debug session, please modify the 'console' config in launch.json.",
57
58
"java.debugger.configuration.exceptionBreakpoint.skipClasses": "Skip the specified classes when breaking on exception. You could use the built-in variables such as '$JDK' and '$Libraries' to skip a group of classes, or add a specific class name expression, e.g. java.*, *.Foo",
58
59
"java.debugger.configuration.jdwp.limitOfVariablesPerJdwpRequest.description": "The maximum number of variables or fields that can be requested in one JDWP request. The higher the value, the less frequently debuggee will be requested when expanding the variable view. Also a large number can cause JDWP request timeout.",
0 commit comments