InterviewSolution
Saved Bookmarks
| 1. |
In Maven, what is a snapshot? |
|
Answer» A snapshot is a specific version of a PROJECT that shows the most recent development copy of the project being worked on. Maven always checks out a SNAPSHOT of the project in the REMOTE repository for each build. As a result, ANYTIME Maven discovers a newer SNAPSHOT of the project, it downloads and replaces the project's older .jar file in the local repository. |
|