1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/vars/piperPipelineStageMavenStaticCodeChecks.groovy
Florian Wilhelm 9d5bd8b09b
Remove references to cloud sdk (#2418)
Not required anymore as Cloud SDK was merged into General Purpose Pipeline
2020-11-23 17:48:53 +01:00

49 lines
1.7 KiB
Groovy

import com.sap.piper.ConfigurationHelper
import com.sap.piper.GenerateDocumentation
import com.sap.piper.StageNameProvider
import com.sap.piper.Utils
import static com.sap.piper.Prerequisites.checkScript
import groovy.transform.Field
@Field String STEP_NAME = getClass().getName()
@Field String TECHNICAL_STAGE_NAME = 'mavenExecuteStaticCodeChecks'
@Field STAGE_STEP_KEYS = [
/** Executes static code checks for Maven based projects. The plugins SpotBugs and PMD are used. */
'mavenExecuteStaticCodeChecks'
]
@Field Set GENERAL_CONFIG_KEYS = []
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
/**
* Execute static code checks for Maven based projects.
*
*/
@GenerateDocumentation
void call(Map parameters = [:]) {
final script = checkScript(this, parameters) ?: null
def utils = parameters.juStabUtils ?: new Utils()
def stageName = StageNameProvider.instance.getStageName(script, parameters, this)
Map config = ConfigurationHelper.newInstance(this)
.loadStepDefaults()
.mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS)
.mixinStageConfig(script.commonPipelineEnvironment, stageName, STEP_CONFIG_KEYS)
.mixin(parameters, PARAMETER_KEYS)
.addIfEmpty('mavenExecuteStaticCodeChecks', script.commonPipelineEnvironment.configuration.runStep?.get(stageName)?.mavenExecuteStaticCodeChecks)
.use()
piperStageWrapper(stageName: stageName, script: script) {
// telemetry reporting
utils.pushToSWA([step: STEP_NAME], config)
if (config.mavenExecuteStaticCodeChecks) {
mavenExecuteStaticCodeChecks(script: script)
}
}
}