product-iots/.gitlab-ci.yml
2020-03-10 20:42:51 +05:30

24 lines
402 B
YAML

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 clean install
tags:
- OracleJDK1.8
deploy:
stage: deploy
script:
- mvn $MAVEN_CLI_OPTS deploy
only:
- master@entgra/product-iots
tags:
- OracleJDK1.8