1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/whitesource/scanOptions.go
Leonard Heilos c15448b4e0
feat(whitesourceExecuteScan): allow to specify InstallCommand (#4376)
* feat(whitesourceExecuteScan) allow to specify InstallCommand

* reorder imports

---------

Co-authored-by: sumeet patil <sumeet.patil@sap.com>
Co-authored-by: Andrei Kireev <andrei.kireev@sap.com>
2023-05-30 16:00:02 +02:00

51 lines
1.4 KiB
Go

package whitesource
// ScanOptions contains parameters needed during the scan.
type ScanOptions struct {
BuildTool string
// ScanType defines the type of scan. Can be "maven" or "mta" for scanning with Maven or "npm"/"yarn".
ScanType string
OrgToken string
UserToken string
ProductName string
ProductToken string
ProductVersion string
// ProjectName is an optional name for an "aggregator" project.
// All scanned maven modules will be reflected in the aggregate project.
ProjectName string
BuildDescriptorFile string
BuildDescriptorExcludeList []string
// PomPath is the path to root build descriptor file.
PomPath string
// M2Path is the path to the local maven repository.
M2Path string
// GlobalSettingsFile is an optional path to a global maven settings file.
GlobalSettingsFile string
// ProjectSettingsFile is an optional path to a local maven settings file.
ProjectSettingsFile string
// InstallArtifacts installs artifacts from all maven modules to the local repository
InstallArtifacts bool
// DefaultNpmRegistry is an optional default registry for NPM.
DefaultNpmRegistry string
AgentDownloadURL string
AgentFileName string
ConfigFilePath string
JreDownloadURL string
Includes []string
Excludes []string
AgentURL string
ServiceURL string
ScanPath string
InstallCommand string
Verbose bool
}