Reputation: 13026
The maven release plugin creates a tag, updates the poms to remove snapshot, builds, deploys and sets the next dev version in the poms leaving us with
The problem is that when I run this I don't know that the build will be the GA release because it hasn't been tested and blessed by QA yet.
Do most people start using the release plugin for each release-candidate allowing re-deployment of the relase version multiple times in your repository?
Upvotes: 2
Views: 226
Reputation: 5265
Re-deploying releases with the same version is not a good idea, since most maven installations are configured to download release versions only once to the local repository. But there are a few other options:
Upvotes: 2