Setup I am using Maven for one my project. This project lets say ProjectA uses ProjectB jars as a dependency. Also, Project A, B have synced versioning.
Problem Lets say, ProjectA and ProjectB both have version 1.2.3. Now when we change some code in ProjectB for use in ProjectA, we don't increment its version until the scope of the ProjectB is completed. Now ProjectA having dependency of ProjectB doesn't update the Jar of ProjectB with maven since the version of ProjectB is still 1.2.3.
Question Does Maven dependency download check for Hash to detect change? Is there a switch to do that? How can we force Maven to always download updated dependency only on Update of the dependency Jar.
Thanks in advance