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)])
I found the answer. The fingerprint is done by a special command
It is recommended to do it in a dedicated step, this is what I did:
More details can be found here