Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to tune maven to compare checksums of local release artifacts with checksums of release artifacts from remote repository and update artifacts with mismatched checksum?

share|improve this question

1 Answer

up vote 1 down vote accepted

In short: No.

Maven will check the checksum of a release only once: When the artifact is downloaded for the first time. Since the artifact can be found in your local repo, Maven will not try to download it (or its checksum) again. Therefore, it can't notice checksum changes.

You must find a different way to notice which checksums/artifacts changed on the remote server and delete those artifacts in your local repo.

Note that on release servers, released artifacts (and their checksums) should never change, even if the checksum is wrong. Instead, a new release (with a new, non-snapshot version) should be uploaded to the server to make sure everyone can easily see that something has changed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.