mirror of
https://repository.entgra.net/community/product-iots.git
synced 2025-09-16 23:32:19 +00:00
20 lines
371 B
YAML
20 lines
371 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
|
|
|
|
deploy:
|
|
stage: deploy
|
|
script:
|
|
- mvn $MAVEN_CLI_OPTS deploy -Dmaven.test.skip=true
|
|
only:
|
|
- master@entgra/product-iots |