Skip to content
Snippets Groups Projects
.gitlab-ci.yml 322 B
Newer Older
stages:
  - lint
  - build
  - test

cache:
  paths:
    - .m2/repository/

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