WorldSystem/.gitlab-ci.yml
2024-05-26 00:21:58 +00:00

25 lines
300 B
YAML

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