DevOps / Maven Interview questions II
Difference between Snapshot and Version in Maven.
In terms of version, when maven has downloaded a dependency project version 1.0, it will not download again the latest version of 1.0 while building the project. To facilitate the latest version the dependent project need to do upgrades it's version to 1.1.
In case of SNAPSHOT, Maven will automatically download the latest SNAPSHOT (:1.0-SNAPSHOT) of the dependency project everytime the project is built.
More Related questions...