16 lines
353 B
YAML
16 lines
353 B
YAML
.gradle-licence-bom:
|
|
image: $GRADLE_IMAGE
|
|
stage: build
|
|
script:
|
|
- >
|
|
if [ "$BACKEND_DIR" != "" ]; then
|
|
cd $BACKEND_DIR
|
|
fi
|
|
- "./gradlew --build-cache cyclonedxBom $GRADLE_CLI_OPTS $GRADLE_EXTRA_OPTS"
|
|
needs: []
|
|
artifacts:
|
|
expire_in: 2 weeks
|
|
reports:
|
|
junit:
|
|
- "$BACKEND_DIR/build/reports/bom.json"
|