Hi.
I've written a new Maven project and for now let's call it Utils. I've installed it successfully in my local Maven repository. At least the targets clean install
print BUILD SUCCESSFUL
in the end. I can also find the jar when I navigate to it manually through the Windows Explorer.
Now there's another project called Import I've written that should have Utils as a dependency. When I now add it to the pom with the scope compile and run the goals eclipse:eclipse
I'm again getting the message BUILD SUCCESSFUL
. But unfortunately, the Utils project isn't in the referenced libraries of Import.
When I want to add it in the POM view of the Maven Eclipse plugin, Utils is also not found. Interestingly, when I specify an erroneous version of Utils, I'm getting a warning when I want to install Import with Maven.
Do you know where I'm wrong?