In the pom.xml, I always specify the <version>
of the dependency or plugin I am using.
Is there a way to tell Maven I always want the latest version downloaded without explicitly updating the version number every time?
In the pom.xml, I always specify the <version>
of the dependency or plugin I am using.
Is there a way to tell Maven I always want the latest version downloaded without explicitly updating the version number every time?
you can declear your dependency version like <version>[1.0.0,)</version>
it will resolve after 1.0.0 version for your dependency.