mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
3a14a91ae5
* rename artifactVersion to version * simplify versioningModel
31 lines
1.2 KiB
Go
31 lines
1.2 KiB
Go
package versioning
|
|
|
|
import (
|
|
"github.com/Masterminds/sprig"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
|
)
|
|
|
|
// DetermineProjectCoordinatesWithCustomVersion resolves the coordinates of the project for use in 3rd party scan tools
|
|
// It considers a custom version if provided instead of using the GAV version adapted according to the versionScheme
|
|
func DetermineProjectCoordinatesWithCustomVersion(nameTemplate, versionScheme, customVersion string, gav Coordinates) (string, string) {
|
|
name, version := DetermineProjectCoordinates(nameTemplate, versionScheme, gav)
|
|
if len(customVersion) > 0 {
|
|
log.Entry().Infof("Using custom version: %v", customVersion)
|
|
return name, customVersion
|
|
}
|
|
return name, version
|
|
}
|
|
|
|
// DetermineProjectCoordinates resolves the coordinates of the project for use in 3rd party scan tools
|
|
func DetermineProjectCoordinates(nameTemplate, versionScheme string, gav Coordinates) (string, string) {
|
|
projectName, err := piperutils.ExecuteTemplateFunctions(nameTemplate, sprig.HermeticTxtFuncMap(), gav)
|
|
if err != nil {
|
|
log.Entry().Warnf("Unable to resolve project name: %v", err)
|
|
}
|
|
|
|
projectVersion := ApplyVersioningModel(versionScheme, gav.Version)
|
|
return projectName, projectVersion
|
|
}
|