mirror of
https://github.com/trainerlord/WorldSystem.git
synced 2024-11-29 12:55:11 +01:00
20 lines
241 B
YAML
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 |