umms-schemas/.gitlab-ci.yml
2019-02-13 13:33:20 +03:00

19 lines
277 B
YAML

stages:
- build
build:
stage: build
image: icha/ci-image:java-8-jcp-nodocker
variables:
MAVEN_OPTS: "-Dmaven.repo.local=/m2"
script:
- mvn install
- ls -lR /m2
artifacts:
paths:
- target/
expire_in: 1 week
only:
- tags
- master