1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/mavenExecuteStaticCodeChecks.go
Florian Wilhelm 83651b750f
update maven-pmd-plugin to 3.14.0 (#2803)
Fixes #2766

Co-authored-by: Thomas Hoffmann <tho.hoffmann@sap.com>
2021-05-04 14:43:40 +02:00

109 lines
3.8 KiB
Go

package cmd
import (
"github.com/SAP/jenkins-library/pkg/log"
"github.com/SAP/jenkins-library/pkg/maven"
"github.com/SAP/jenkins-library/pkg/telemetry"
"strconv"
)
func mavenExecuteStaticCodeChecks(config mavenExecuteStaticCodeChecksOptions, telemetryData *telemetry.CustomData) {
err := runMavenStaticCodeChecks(&config, telemetryData, maven.NewUtilsBundle())
if err != nil {
log.Entry().WithError(err).Fatal("step execution failed")
}
}
func runMavenStaticCodeChecks(config *mavenExecuteStaticCodeChecksOptions, telemetryData *telemetry.CustomData, utils maven.Utils) error {
var defines []string
var goals []string
if !config.SpotBugs && !config.Pmd {
log.Entry().Warnf("Neither SpotBugs nor Pmd are configured. Skipping step execution")
return nil
}
if config.InstallArtifacts {
err := maven.InstallMavenArtifacts(&maven.EvaluateOptions{
M2Path: config.M2Path,
ProjectSettingsFile: config.ProjectSettingsFile,
GlobalSettingsFile: config.GlobalSettingsFile,
}, utils)
if err != nil {
return err
}
}
if testModulesExcludes := maven.GetTestModulesExcludes(utils); testModulesExcludes != nil {
defines = append(defines, testModulesExcludes...)
}
if config.MavenModulesExcludes != nil {
for _, module := range config.MavenModulesExcludes {
defines = append(defines, "-pl")
defines = append(defines, "!"+module)
}
}
if config.SpotBugs {
spotBugsMavenParameters := getSpotBugsMavenParameters(config)
defines = append(defines, spotBugsMavenParameters.Defines...)
goals = append(goals, spotBugsMavenParameters.Goals...)
}
if config.Pmd {
pmdMavenParameters := getPmdMavenParameters(config)
defines = append(defines, pmdMavenParameters.Defines...)
goals = append(goals, pmdMavenParameters.Goals...)
}
finalMavenOptions := maven.ExecuteOptions{
Goals: goals,
Defines: defines,
ProjectSettingsFile: config.ProjectSettingsFile,
GlobalSettingsFile: config.GlobalSettingsFile,
M2Path: config.M2Path,
LogSuccessfulMavenTransfers: config.LogSuccessfulMavenTransfers,
}
_, err := maven.Execute(&finalMavenOptions, utils)
return err
}
func getSpotBugsMavenParameters(config *mavenExecuteStaticCodeChecksOptions) *maven.ExecuteOptions {
var defines []string
if config.SpotBugsIncludeFilterFile != "" {
defines = append(defines, "-Dspotbugs.includeFilterFile="+config.SpotBugsIncludeFilterFile)
}
if config.SpotBugsExcludeFilterFile != "" {
defines = append(defines, "-Dspotbugs.excludeFilterFile="+config.SpotBugsExcludeFilterFile)
}
if config.SpotBugsMaxAllowedViolations != 0 {
defines = append(defines, "-Dspotbugs.maxAllowedViolations="+strconv.Itoa(config.SpotBugsMaxAllowedViolations))
}
mavenOptions := maven.ExecuteOptions{
// check goal executes spotbugs goal first and fails the build if any bugs were found
Goals: []string{"com.github.spotbugs:spotbugs-maven-plugin:4.1.4:check"},
Defines: defines,
}
return &mavenOptions
}
func getPmdMavenParameters(config *mavenExecuteStaticCodeChecksOptions) *maven.ExecuteOptions {
var defines []string
if config.PmdMaxAllowedViolations != 0 {
defines = append(defines, "-Dpmd.maxAllowedViolations="+strconv.Itoa(config.PmdMaxAllowedViolations))
}
if config.PmdFailurePriority >= 1 && config.PmdFailurePriority <= 5 {
defines = append(defines, "-Dpmd.failurePriority="+strconv.Itoa(config.PmdFailurePriority))
} else if config.PmdFailurePriority != 0 {
log.Entry().Warningf("Pmd failure priority must be a value between 1 and 5. %v was configured. Defaulting to 5.", config.PmdFailurePriority)
}
mavenOptions := maven.ExecuteOptions{
// check goal executes pmd goal first and fails the build if any violations were found
Goals: []string{"org.apache.maven.plugins:maven-pmd-plugin:3.14.0:check"},
Defines: defines,
}
return &mavenOptions
}