We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like to configure maven.executable.options as a list of strings, instead of a single string.
maven.executable.options
I have projects in which I must pass very long list of options to projects, resulting in strings of 220 chars in most cases.
Instead of:
"maven.executable.options": "-option1 -option2 -option3 -option4"
Something like:
"maven.executable.options": [ "-option1", "-option2", "-option3", "-option4" ],
The text was updated successfully, but these errors were encountered:
feature: maven.executable.options configuration as list of strings
4c35826
Closes microsoft#981
43618e6
Successfully merging a pull request may close this issue.
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:
Something like:
The text was updated successfully, but these errors were encountered: