What exactly is a Maven Snapshot and why do we need it?

前端 未结 13 2295
名媛妹妹
名媛妹妹 2020-11-22 07:07

I am a bit confused about the meaning of a Maven Snapshot and why we build one?

相关标签:
13条回答
  • 2020-11-22 07:38

    usually in maven we have two types of builds 1)Snapshot builds 2)Release builds

    1. snapshot builds:SNAPSHOT is the special version that indicate current deployment copy not like a regular version, maven checks the version for every build in the remote repository so the snapshot builds are nothing but development builds.

    2. Release builds:Release means removing the SNAPSHOT at the version for the build, these are the regular build versions.

    0 讨论(0)
提交回复
热议问题