Files
exif-image-rotation-tool/.gitlab-ci.yml
2019-02-11 10:50:29 +00:00

32 lines
492 B
YAML

image: maven:latest
variables:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
cache:
paths:
- .m2/repository
stages:
- build
- test
- package
build:
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
package:
stage: package
script:
- mvn $MAVEN_CLI_OPTS package
artifacts:
paths:
- target/*jar-with-dependencies.jar