1 쉘 프로젝트와 4 하위 모듈로 maven 프로젝트 설정이 있습니다. 쉘을 만들려고 할 때. 나는 얻다:
[INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project module1:1.0_A0 (C:\module1\pom.xml) has 1 error
[ERROR] Non-resolvable parent POM: Failure to find shell:pom:1.0_A0 in http://nyhub1.ny.ssmb.com:8081/nexus/content/repositories/JBoss/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 5, column 11 -> [Help 2]
고독한 모듈을 만들려고하면 동일한 오류가 발생합니다. module1 만 해당 모듈로 교체합니다.
그들 모두에게 그들의 poms에서 부모를 언급하게하십시오.
<parent>
<artifactId>shell</artifactId>
<groupId>converter</groupId>
<version>1.0_A0</version>
</parent>
다음은 shell pom의 관련 부분입니다.
<groupId>converter</groupId>
<artifactId>shell</artifactId>
<version>1.0_A0</version>
<packaging>pom</packaging>
<name>shell</name>
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
<module>module4</module>
</modules>
<relativePath>..</relativePath>
under 추가<parent></parent>
가 나를 위해 일했습니다.