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
For example I would expect
<listAttribute key="M2_PROPERTIES"> <listEntry value="environment.profiles.active=local" /> </listAttribute> <booleanAttribute key="M2_SKIP_TESTS" value="true" />
to be converted to:
<option name="mavenProperties"> <map> <entry key="environment.profiles.active" value="local" /> </map> </option> <option name="skipTests" value="true" />
Instead nothing is converted and I have to manually re-set the values on the created maven launcher.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example I would expect
to be converted to:
Instead nothing is converted and I have to manually re-set the values on the created maven launcher.
The text was updated successfully, but these errors were encountered: