JBurroughs818155 (Community Member) asked a question.

How to configure Jenkins pipeline job with ID/Key

I am configuring Jenkins to run the Veracode plugin. The plug-in is using an ID/KEY rather than ID/PW. My groovy script looks like this:

 

 stage('Veracode Scan') {

                steps                

                  { veracode applicationName: 'Test App',

                        criticality: 'Very High',

                        fileNamePattern: '**/**.jar',

                        replacementPattern: '',

                        sandboxName: 'DEV Sandbox',

                        scanExcludesPattern: '',

                        scanIncludesPattern: '',

                        scanName: '$buildnumber',

                        teams: '',

                        uploadExcludesPattern: '',

                        uploadIncludesPattern: '**/**.jar',

                        vid: '',

                        vkey: '',

                        vpassword: '',

                        vuser: ''

                    }

                }

How do I get to refer to the ID/KEY that I have already configured in Jenkins under Veracode User Credentials?


Topics (1)

No articles found
Loading

Ask the Community

Get answers, share a use case, discuss your favorite features, or get input from the community.