# SPDX-FileCopyrightText: © 2021-2023 Matthias Andreas Benkard <code@mail.matthias.benkard.de> | |
# | |
# SPDX-License-Identifier: LGPL-3.0-or-later | |
stages: | |
- check | |
image: maven:3-openjdk-17 | |
verify: | |
stage: check | |
script: | |
- mvn verify | |
sast: | |
stage: check | |
cache: | |
key: $CI_JOB_NAME | |
paths: | |
- .m2/repository | |
variables: | |
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository" | |
MAVEN_CLI_OPTS: "--batch-mode --errors" | |
include: | |
- template: Security/SAST.gitlab-ci.yml |