stages:
  - build
  - test

build:
  stage: build
  image: maven:3.8.8-eclipse-temurin-17
  script:
    - mvn clean compile
  artifacts:
    paths:
      - target/

test:
  stage: test
  image: maven:3.8.8-eclipse-temurin-17
  script:
    - mvn test