Skip to content

Commit d3bcbaa

Browse files
snjezargrunber
authored andcommitted
Add support for externally provided 'lifecycle-mapping-metadata.xml' file
Signed-off-by: Snjezana Peco <[email protected]>
1 parent 9ab7039 commit d3bcbaa

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,9 @@ The following settings are supported:
240240
* `java.edit.smartSemicolonDetection.enabled`: Defines the `smart semicolon` detection. Defaults to `false`.
241241
* `java.configuration.detectJdksAtStart`: Automatically detect JDKs installed on local machine at startup. If you have specified the same JDK version in `java.configuration.runtimes`, the extension will use that version first. Defaults to `true`.
242242

243+
New in 1.27.0
244+
* `java.configuration.maven.lifecycleMappings` : Path to Maven's lifecycle mappings xml.
245+
243246
Semantic Highlighting
244247
===============
245248
[Semantic Highlighting](https://github.com/redhat-developer/vscode-java/wiki/Semantic-Highlighting) fixes numerous syntax highlighting issues with the default Java Textmate grammar. However, you might experience a few minor issues, particularly a delay when it kicks in, as it needs to be computed by the Java Language server, when opening a new file or when typing. Semantic highlighting can be disabled for all languages using the `editor.semanticHighlighting.enabled` setting, or for Java only using [language-specific editor settings](https://code.visualstudio.com/docs/getstarted/settings#_languagespecific-editor-settings).

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,13 @@
659659
"description": "Specifies default mojo execution action when no associated metadata can be detected.",
660660
"scope": "window",
661661
"order": 90
662+
},
663+
"java.configuration.maven.lifecycleMappings": {
664+
"type": "string",
665+
"default": null,
666+
"description": "Path to Maven's lifecycle mappings xml",
667+
"scope": "window",
668+
"order": 100
662669
}
663670
}
664671
},

0 commit comments

Comments
 (0)