Project A
--Module B
--pom.xml
--Module C
--pom.xml
pom.xml
I am working with a multimodule project where project A, module B, and Module C all have their own pom files. Module A and Module B reference the ProjectA pom file.
I am using ModuleA as a dependency in moduleB's pom file.
I added few packages in moduleA and performed mvn clean install
It updated my .m2 repository with the latest changes I made.
I then did mvn clean install on moduleB, however the moduleB still doesnt recognize the latest changes in module A.
I tried the following, but dint work for me
- Deleting .m2 folder and doing maven clean install
- Building mvn clean install on the root folder
- Using Intellij, Invalidate cache and restart, enable update snapshots etc