mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
92837fde18
* Improvements were made * fixed tests * fixed issues * fix versioning * fix Inclusive Language warnings * gradle support to fortifyExecuteScan. Classpath resolving Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
128 lines
3.6 KiB
YAML
128 lines
3.6 KiB
YAML
metadata:
|
|
name: gradleExecuteBuild
|
|
description: This step runs a gradle build command with parameters provided to the step.
|
|
longDescription: This step runs a gradle build command with parameters provided to the step.
|
|
spec:
|
|
inputs:
|
|
params:
|
|
- name: path
|
|
aliases:
|
|
- name: buildGradlePath
|
|
deprecated: false
|
|
type: string
|
|
description: Path to the folder with build.gradle (or build.gradle.kts) file which should be executed.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: false
|
|
- name: task
|
|
type: string
|
|
description: Gradle task that should be executed.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
mandatory: false
|
|
default: build
|
|
- name: publish
|
|
type: bool
|
|
description: Configures gradle to publish the artifact to a repository.
|
|
scope:
|
|
- STEPS
|
|
- STAGES
|
|
- PARAMETERS
|
|
default: false
|
|
- name: repositoryUrl
|
|
type: string
|
|
description: Url to the repository to which the project artifacts should be published.
|
|
scope:
|
|
- GENERAL
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
resourceRef:
|
|
- name: commonPipelineEnvironment
|
|
param: custom/repositoryUrl
|
|
- name: repositoryPassword
|
|
type: string
|
|
description: Password for the repository to which the project artifacts should be published.
|
|
scope:
|
|
- GENERAL
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
secret: true
|
|
resourceRef:
|
|
- name: commonPipelineEnvironment
|
|
param: custom/repositoryPassword
|
|
- name: repositoryUsername
|
|
type: string
|
|
description: Username for the repository to which the project artifacts should be published.
|
|
scope:
|
|
- GENERAL
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
secret: true
|
|
resourceRef:
|
|
- name: commonPipelineEnvironment
|
|
param: custom/repositoryUsername
|
|
- name: createBOM
|
|
type: bool
|
|
description: Creates the bill of materials (BOM) using CycloneDX plugin.
|
|
scope:
|
|
- GENERAL
|
|
- STEPS
|
|
- STAGES
|
|
- PARAMETERS
|
|
- name: artifactVersion
|
|
type: string
|
|
description: Version of the artifact to be built.
|
|
scope:
|
|
- GENERAL
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
resourceRef:
|
|
- name: commonPipelineEnvironment
|
|
param: artifactVersion
|
|
- name: artifactGroupId
|
|
type: string
|
|
description: The group of the artifact.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
resourceRef:
|
|
- name: commonPipelineEnvironment
|
|
param: groupId
|
|
- name: artifactId
|
|
type: string
|
|
description: The name of the artifact.
|
|
scope:
|
|
- PARAMETERS
|
|
- STAGES
|
|
- STEPS
|
|
resourceRef:
|
|
- name: commonPipelineEnvironment
|
|
param: artifactId
|
|
- name: useWrapper
|
|
type: bool
|
|
description: If set to false all commands are executed using 'gradle', otherwise 'gradlew' is executed.
|
|
scope:
|
|
- STEPS
|
|
- STAGES
|
|
- PARAMETERS
|
|
default: false
|
|
outputs:
|
|
resources:
|
|
- name: reports
|
|
type: reports
|
|
params:
|
|
- filePattern: "**/bom.xml"
|
|
type: sbom
|
|
containers:
|
|
- name: gradle
|
|
image: gradle:6-jdk11-alpine
|