This commit is contained in:
Charitha Goonetilleke 2018-09-20 06:44:43 +00:00
parent 1bee1a2975
commit b883fc1ca1

20
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,20 @@
image: maven:latest
variables:
MAVEN_CLI_OPTS: "-s .m2/settings.xml --batch-mode"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
cache:
paths:
- .m2/repository/
- target/
build:
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:
stage: test
script:
- mvn $MAVEN_CLI_OPTS test