Thursday, April 6, 2017

Types of Builds in Maven

Usually in maven we have two types of builds

1) Snapshot builds
2) Release builds

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 maintenance builds.

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

No comments: