Avatar
0
monkey Enlightened
monkey Enlightened
Fix issue 'parent.relativePath' of POM points at abc instead of org.youngmonkeys:ezyplatform-parent, please verify your project structure
I got an issue: 'parent.relativePath' of POM org.youngmonkeys:elearning:1.0.0 (/Users/abc/Downloads/elearning/pom.xml) points at ab. instead of org.youngmonkeys:ezyplatform-parent, please verify your project structure.
  • Answer
Remain: 5
1 Answer
Avatar
monkey Enlightened
monkey Enlightened
You can change the pom.xml to:
    <parent>
        <groupId>org.youngmonkeys</groupId>
        <artifactId>ezyplatform-parent</artifactId>
        <version>0.0.2</version>
        <relativePath></relativePath>
    </parent>

Refer: https://stackoverflow.com/questions/6003831/parent-relativepath-points-at-my-com-mycompanymyproject-instead-of-org-apache

  • 0
  • Reply