gilde-ci-cd/maven-build-template.gitlab-ci.yml
2021-07-19 12:07:45 +00:00

11 lines
226 B
YAML

.maven-build:
stage: build
image: $MAVEN_IMAGE
script:
- mvn $MAVEN_CLI_OPTS package compiler:testCompile -DskipTests
artifacts:
expire_in: 2 weeks
when: always
paths:
- $BACKEND_DIR/target/*.jar