我正在尝试为回购创建一个版本。我遇到的问题是当我跑步时
mvn release:prepare -DdryRun= true
我正在尝试在具有父级的pom.xml上运行它。
这是我想要发布的pom.xml。
...
<parent>
<groupId>com..ehr</groupId>
<artifactId>ehr-common</artifactId>
<version>0.5.0.26</version>
<relativePath> ../../EhrPom/main/pom.xml</relativePath>
</parent>
...
当我运行mvn版本时:prepare -DdryRun = true。我收到此错误。
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/com//ehr//0.5.0.26/ehr-
-0.5.0.26.pom
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project com..ehr:emergency-login-webapp:2.0.7.0-SNAPSHOT
(/Users/computer1/Documents/computer1_MacBook/depot//-
webapp/main/pom.xml) has 1 error
[ERROR] Non-resolvable parent POM: Could not find artifact in central (http://repo1.maven.org/maven2) and 'parent.relativePath'
points at wrong local POM @ line 8, column 11 -> [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
我是否需要在发布之前释放父pom?这是否因为它试图从http://repo1.maven.org/maven2/而不是我的回购下载而有任何问题?任何帮助将不胜感激!
答案 0 :(得分:0)
是的,您还必须部署父POM,因为其他人在依赖您的工件时需要它。父pom.xml
可能包含其他依赖项,属性等。因此,您需要将其部署到(远程)存储库。
您可能更容易创建包含父项和工件作为模块的顶级pom.xml
。如果您在此项目中启动发布过程,Maven会处理正确的顺序,即它将在您的工件之前自动释放/部署您的父POM。或者,如果您的父POM同时是您的根POM,只需在那里启动发布过程,其模块也应自动释放。
<强>参考文献:强>
答案 1 :(得分:0)
犯了一个愚蠢的错误,没有设置正确的存储库:/