mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
18 lines
224 B
YAML
18 lines
224 B
YAML
image: maven:latest
|
|
|
|
stages:
|
|
- build
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- mvn package
|
|
only:
|
|
changes:
|
|
- src/**/*
|
|
- pom.xml
|
|
artifacts:
|
|
expire_in: 2 weeks
|
|
paths:
|
|
- target/Morningstar-*.jar
|