Skip to content
Snippets Groups Projects
.gitlab-ci.yml 422 B
Newer Older
include:
  - project: 'fit-connect/pipeline'
    ref: main
    file: 'reuse.gitlab-ci.yml'

stages:
  - lint
  - build
  - test

cache:
  paths:
    - .m2/repository/
build:
  image: maven:latest
  stage: build
  script:
    - ./mvnw $MAVEN_CLI_OPTS clean install -DskipTests --no-transfer-progress -T2
Martin Vogel's avatar
Martin Vogel committed
    - ./mvnw $MAVEN_CLI_OPTS test --no-transfer-progress -T2