When executing "Import (Existing Maven Project)" in a Maven project having several modules which leverage property values with interpolation, those are not detected.
For example for a multi-module pom like
...
<properties>
<subproject.abbreviation>test</subproject.abbreviation>
</properties>
<modules>
<module>${subproject.abbreviation}-core</module>
<module>${subproject.abbreviation}-config</module>
<module>${subproject.abbreviation}-frontend</module>
</modules>
...
the modules are not detected