Non-resolvable parent POM: Could not find artifact

后端 未结 2 1637
不知归路
不知归路 2021-01-17 13:08

I have recently looked into Gorilla Logic\'s open source testing tool and need to make some changes in order to be able to log something to the console. I have checked out

相关标签:
2条回答
  • 2021-01-17 13:23

    If there are lots of dependencies behind the project, they have to be pattered for first before building the main project.

    Clean, compile and install such dependencies (from the "Maven" pane found on the right side of the IDE). First move such dependencies enclosed within their projects to the same main project directory.

    Lastly, clean, compile and install the main project.

    0 讨论(0)
  • 2021-01-17 13:36

    This project seems to be module project under another maven project "moneytalk". As this project can inherit properties, dependency management information, plugin information from the parent project, maven tries to read the parent pom.xml. If the parent pom.xml is not available at the specified location, maven build will fail.

    One option is to checkout all the projects including the parent project. Other option is to place the pom.xml of the parent project at the required location (in your case /Users/henry/Desktop/monkeytalk-agent-android/parent/pom.xml

    0 讨论(0)
提交回复
热议问题