mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-22 23:10:52 +01:00
410a50ba45
# Conflicts: # .gitlab-ci.yml
19 lines
221 B
YAML
19 lines
221 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/Habbo-*.jar
|
|
|