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

前端 未结 13 2457
名媛妹妹
名媛妹妹 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

    The "SNAPSHOT" term means that the build is a snapshot of your code at a given time.

    It usually means that this version is still under heavy development.

    When the code is ready and it is time to release it, you will want to change the version listed in the POM. Then instead of having a "SNAPSHOT" you would use a label like "1.0".

    For some help with versioning, check out the Semantic Versioning specification.

提交回复
热议问题