Hello I am working on a Maven project that requires me to enable "Resolve Workspace Artifacts" at the time of Maven Build operation. Without which I get build failure as certain dependencies are not resolved.
From this link I understand what "Resolve Workspace Artifacts" does.
To give background: I am starting fresh, with nothing in my local m2 repo. I am cloning a project from Git Lab and while the "mvn clean install" is being run I enable "Resovle Workspace Artifacts".
This is a multi-module maven project.
I want to understand...
1. If this OK (Maven project defined such that it requires us to enable "Resolve Workspace Artifacts")?
2. Could this issue have arised due to incorrect/bad design of Maven project dependencies?
3. If left as it is will there be any issues if I plan towards CI-CD phase?
This is a Spring Boot web project