15 lines
329 B
YAML
15 lines
329 B
YAML
.maven-licence-bom:
|
|
image: $MAVEN_IMAGE
|
|
stage: build
|
|
interruptible: true
|
|
script:
|
|
- >
|
|
if [ "$BACKEND_DIR" != "" ]; then
|
|
cd $BACKEND_DIR
|
|
fi
|
|
- mvn $MAVEN_CLI_OPTS $MAVEN_EXTRA_OPTS cyclonedx:makeBom $MVN_EXTRA_ARGS
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- "$BACKEND_DIR/target/bom.json"
|