Skip to content

Commit 226ce3f

Browse files
committed
Add java.configuration.maven.defaultMojoExecutionAction
Signed-off-by: Snjezana Peco <[email protected]>
1 parent 2cdb0ce commit 226ce3f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ The following settings are supported:
224224

225225
New in 1.15.0
226226
* `java.import.maven.disableTestClasspathFlag` : Enable/disable test classpath segregation. When enabled, this permits the usage of test resources within a Maven project as dependencies within the compile scope of other projects. Defaults to `false`.
227+
* `java.configuration.maven.defaultMojoExecutionAction` : Specifies default mojo execution action when no associated metadata can be detected. Defaults to `ignore`.
227228

228229
Semantic Highlighting
229230
===============

package.json

+12
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,18 @@
404404
"description": "Specifies severity if the plugin execution is not covered by Maven build lifecycle.",
405405
"scope": "window"
406406
},
407+
"java.configuration.maven.defaultMojoExecutionAction": {
408+
"type": "string",
409+
"enum": [
410+
"ignore",
411+
"warn",
412+
"error",
413+
"execute"
414+
],
415+
"default": "ignore",
416+
"description": "Specifies default mojo execution action when no associated metadata can be detected.",
417+
"scope": "window"
418+
},
407419
"java.configuration.workspaceCacheLimit": {
408420
"type": [
409421
"null",

0 commit comments

Comments
 (0)