With Maven, we can achieve the similar effect of invalidating local dependency cache and download artifacts from repository by using following command.
mvn -U
Using following Maven command, the version of artifacts can be updated in a multi-module maven project.
mvn versions:set -DnewVersion='new-version'For instance, the following maven command updates the
In my job, we work with a maven multi-module project. While using maven, I have discovered several commands that are quite effective during development. In this post, and in the upcoming posts