Maven:Non-resolvable parent POM: Failure to find错误

过滤关键错误信息:


[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/com/coship/fsepowerOnParent/V100R001B021/fsepowerOnParent-V100R001B021.pom
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project com.coship:fsepowerOnVasms:V100R001B021 (E:\project\fsepower\fsepowerOnVasms-all\fsepoweronvasms\pom.xml) has 1 error
[ERROR]     Non-resolvable parent POM: Could not find artifact com.coship:fsepowerOnParent:pom:V100R001B021 in central (http://repo1.maven.org/maven2) and 'parent.relativePath' points at wrong local POM @ line 4, column 10 -> [Help 2]
[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
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException


由提示可知是parent.relativePath出错。解决办法如下:


fsepowerOnParent 
com.coship   
V100R001B020
../fsepowerOnParent/pom.xml

com.coship
fsepowerOnVasms
V100R001B020
fsepowerOnVasms

通常../../pom.xml指定正确的父pom路径,默认为../pom.xml

我的工程fsepowerOnParent与fsepowerOnVasms平行路径,所以../fsepowerOnParent/pom.xml






你可能感兴趣的:(Maven)