InterviewSolution
| 1. |
What Is Difference Between Snapshot And Version? |
|
Answer» In CASE of Version, if Maven once DOWNLOADED the mentioned version say data-service:1.0, it will never try to download a newer 1.0 AVAILABLE in repository. To download the updated code, data-service version is be UPGRADED to 1.1. In case of Version, if Maven once downloaded the mentioned version say data-service:1.0, it will never try to download a newer 1.0 available in repository. To download the updated code, data-service version is be upgraded to 1.1. |
|