#11 jdk11 support

This commit is contained in:
Penski, Andreas 2019-03-06 14:26:05 +01:00
parent 248f460500
commit 70149817bf
17 changed files with 391 additions and 149 deletions

29
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,29 @@
image: maven:latest
variables:
MAVEN_CLI_OPTS: " --batch-mode -Dmaven.repo.local=repository -Dfile.encoding=UTF-8"
cache:
paths:
- repository
build-validator:
stage: build
script:
- mvn $MAVEN_CLI_OPTS -Pjava-11,java-8,gitlab verify
artifacts:
name: build-results
paths:
- target/*.jar
reports:
junit:
- target/surefire-reports/*.xml
- target/failsafe-reports/*.xml
#deploy:
# stage: deploy
# script:
# - mvn $MAVEN_CLI_OPTS deploy
# only:
# - master