myeclipse2016创建maven多模块项目,每次无法找到war子模块

myeclipse2016创建maven多模块项目,每次无法找到war子模块,但是本地仓库确实存在这war install对象
[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Child module E:\Workspaces\MyEclipse 2016 CI\A\A2 of E:\Workspaces\MyEclipse 2016 CI\A\pom.xml does not exist @
@
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]

[ERROR] The project A:A:0.0.1-SNAPSHOT (E:\Workspaces\MyEclipse 2016 CI\A\pom.xml) has 1 error
[ERROR] Child module E:\Workspaces\MyEclipse 2016 CI\A\A2 of E:\Workspaces\MyEclipse 2016 CI\A\pom.xml does not exist
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException


图片说明

而且每次只是 war(A2)这个字模块找不到,请教大神了

参考Maven child module does not exist

把类似下面的写法:

<modules>
        <module>../my-util</module>
        <module>../my-server</module>
</modules>

改成下面的写法(放到profile里面):

<profiles>
    <profile>
        <modules>
            <module>../my-util</module>
            <module>../my-server</module>           
        </modules>
    </profile>
</profiles>