Skip to content
Advertisement

Non-resolvable parent POM for xxx

I’m trying to package a maven project and the IDEA console says “Non-resolvable parent POM for xxx”. console log

The parent pom has been put in my maven local repository but can not be resolved by the submodules.

parent pom directory

inside 1.0.0

The submodule’s pom.xml reports errors like this.

submodule's error

The parent pom.xml looks like this

<groupId>com.github.comctrl</groupId>
<artifactId>ComCtrl-Cloud</artifactId>
<version>1.0.0</version>
<modules>
    <module>comctrl-auth</module>
    <module>comctrl-common</module>
    <module>comctrl-admin</module>
    <module>service-org</module>
    <module>service-administrative-division</module>
    <module>service-standard-address</module>
</modules>
<packaging>pom</packaging>

<name>ComCtrl-Cloud</name>

The project seems like downloading the parent pom from the central repository and is not able to find it. It is supposed to resolve the pom.xml and download dependencies needed by submodules. I’m not sure what’s going on. I’ll be appreciated if anyone can help me!

Advertisement

Answer

I didn’t put the package on the right path, the right path should be ../local_repo/com/github/comctrl.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement