Before we deploy unsigned jars and aars to the artifactory, Now I have just signed my artifacts before pushing to the same artifactory repo. I am using gradle MavenPublishing Plugin to publish the artifacts(jars and aars)
I am facing checksum conflict as the server generated checksum value is based on the unsigned version of the artifacts and the client checksum will be new as some more meta data added while signing. Checksum original and actual values differ.
Error Message: java.io.IOException: Failed to deploy file. Status code: 409 Response message: Artifactory returned the following errors: Checksum policy 'LocalRepoChecksumPolicy: CLIENT' rejected the artifact
I need to now push my new signed version of the jars and aars to my same JFrog artifactory repo. Any suggestions to solve this issue will be helpful.
Thanks in advance!