Fingerprint at pipeline Jenkins job

2.3k Views Asked by At

How can I add fingerprint to artefact at pipeline Jenkins job? I added the needed plugins and used the parameters as described at the documentation.

withMaven(options: [artifactsPublisher(disabled: false), dependenciesFingerprintPublisher(disabled: false)])
1

There are 1 best solutions below

0
On

I found the answer. The fingerprint is done by a special command

step([$class: 'ArtifactArchiver', artifacts: '**/*.jar', fingerprint: true])

It is recommended to do it in a dedicated step, this is what I did:

stage('arch') {
    step([$class: 'ArtifactArchiver', artifacts: '**/*.jar', fingerprint: true])
}

More details can be found here