重现错误的步骤:
错误:
[ERROR] The project org.wso2.appfactory:maven-archetype:1.0.0 (C:\wso2\src\wso2_platform_branch_400\products\appfactory\1.0.0\modules\maven-archetype\pom.xml) has 1 error
[ERROR] Non-resolvable parent POM: Failure to find org.wso2.appfactory:wso2appfactory-parent:pom:1.0.0 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 21, column 13
答案 0 :(得分:0)
修改%SRC_ROOT%\products\appfactory\1.0.0\modules\maven-archetype\pom.xml
,更改:
<parent>
...
<relativePath>../../../pom.xml</relativePath>
</parent>
要:
<parent>
...
<relativePath>../../../1.0.0/pom.xml</relativePath>
</parent>