Skip to content

Update maven-surefire-plugin

Matthias Balke requested to merge matthiasbalke/spring:master into master

When doing a Maven build inside a docker container using this default spring template, the Maven build failes due to an old surefire version not working within docker builds. Upgrading to the latest surefire version let the build complete successfull.

Example .gitlab-ci.yml reproducing this bug:

image: openjdk:8-jdk

build:
  stage: build
  script: ./mvnw -B -e clean package

Merge request reports