microsoft / vscode-maven

VSCode extension "Maven for Java"
https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven
Other
179 stars 88 forks source link

maven.executable.options configuration as list of strings #981

Open musantro opened 1 year ago

musantro commented 1 year ago

Suggestion

I would like to configure maven.executable.options as a list of strings, instead of a single string.

Use Cases

I have projects in which I must pass very long list of options to projects, resulting in strings of 220 chars in most cases.

Examples

Instead of:

"maven.executable.options": "-option1 -option2 -option3 -option4"

Something like:

"maven.executable.options": [
    "-option1",
    "-option2",
    "-option3",
    "-option4"
],