I have a simple setup.
project
|--> pom.xml
|--> util
|--> core
|--> web
I managed to configure everything correctly. I changed the versions to 0.0.1-SNAPSHOT, I removed the dots from the project names (maybe Maven is picky without telling me, wrong guess) I changed the snapshot policy of artifactory to never.
I use Eclipse 4.3, and I verified that I am using the embedded maven version.
What I have is that it does find the parent and I can compile util. But when I want to compile the core project, Maven can not find it. It seams from the Debug output that it is looking for it in the local repository.
What do I need to do that Maven can find it right where it is in the other top level file.
All three projects are part of the <modules> section within the parent pom, and I do not need to use a local reference to the parent pom for Maven to locate it.