wso2 maven issue build platform patch 4.0.9 - 找不到org.wso2.appfactory:wso2appfactory-parent:pom:1.0.0

时间:2013-07-02 16:47:49

标签: wso2

重现错误的步骤:

  1. svn co https://svn.wso2.org/repos/wso2/carbon/platform/branches/4.0.0
  2. cd patch-releases \ 4.0.9
  3. mvn clean
  4. 错误:

    [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
    

1 个答案:

答案 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>