我在 Windows 上使用 apache maven 3.1.0(经过相当长的一段时间后)用于其他人组合的项目。我有一个父 pom 和多个子 pom xml 文件。子 pom 包含以下内容,这在我运行 mvn clean install 时会导致问题:
<parent>
<groupId>com.test.platform</groupId>
<artifactId>test-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
我从 mvn -e 得到的错误指向由于无法找到工件(参考 0.0.1-SNAPSHOT)而导致的依赖问题。我不确定我是否缺少步骤或需要使用我的项目/pom xml 文件更改某些内容。欢迎任何有用的建议(如果需要,我可以发布更详细的错误消息)。谢谢!
更新:我也尝试向子 pom xml 文件添加相对路径,尽管它仍然给我一个错误。
目录结构:
Main Directory -> pom.xml file
Child Directory -> pom.xml file (with parent tag) - I added the relative section to it as well.