I am using Jenkins's scripted pipeline and while uploading the Artifacts to Artifactory I am getting an error.
This is the code from my Jenkins scripted pipeline:
stage('Build') {
rtMaven.run pom: 'java-proj/pom.xml', goals: '-X clean install', buildInfo: buildInfo;
}
The error which I am getting is:
[main] DEBUG org.jfrog.build.extractor.maven.BuildInfoClientBuilder - Failed checksum deploy of checksum 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' with statusCode: 404
It uploads the artifacts half way and then somehow, it gets non zero exit code and it breaks the pipeline build.
I am using this Jfrog doc for reference and following exact syntax.
Thanks, G