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.