WorldSystem/.gitlab-ci.yml
2024-05-25 23:53:14 +00:00

20 lines
241 B
YAML

image: maven:3-eclipse-temurin-21-alpine
stages:
- build
- test
- deploy
build:
stage: build
script:
- mvn build
artifacts:
paths:
- target/*.jar
expire_in: 1 week
test:
stage: test
script:
- mvn test