2020-05-27 18:20:10 +02:00
|
|
|
import com.sap.piper.BuildTool
|
2020-05-25 19:48:59 +02:00
|
|
|
import com.sap.piper.DownloadCacheUtils
|
|
|
|
import groovy.transform.Field
|
|
|
|
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
2021-11-15 15:20:20 +02:00
|
|
|
@Field String METADATA_FILE = 'metadata/fortifyExecuteScan.yaml'
|
2020-05-25 19:48:59 +02:00
|
|
|
|
2021-11-15 15:20:20 +02:00
|
|
|
//Metadata maintained in file project://resources/metadata/fortifyExecuteScan.yaml
|
2020-05-25 19:48:59 +02:00
|
|
|
|
|
|
|
void call(Map parameters = [:]) {
|
|
|
|
final script = checkScript(this, parameters) ?: this
|
2020-05-27 18:20:10 +02:00
|
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.MAVEN)
|
2020-05-25 19:48:59 +02:00
|
|
|
|
2022-01-21 11:52:17 +02:00
|
|
|
List credentials = [[type: 'token', id: 'fortifyCredentialsId', env: ['PIPER_authToken']], [type: 'token', id: 'githubTokenCredentialsId', env: ['PIPER_githubToken']]]
|
2020-05-25 19:48:59 +02:00
|
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
|
|
}
|