furniture/.gitlab-ci.yml

23 lines
275 B
YAML

image: maven:3-jdk-8
stages:
- build
- tag
- deploy
DiceFurniture:
stage: build
script:
- mvn clean package
artifacts:
paths:
- target/*.jar
only:
- master
DiceFurniture-Nexus:
stage: deploy
script:
- mvn deploy
only:
- master