Run Integration Tests with Java 8, 11, 13 and 14

Build with Maven 3.6.2 (Linux)
This commit is contained in:
Sylwester Lachiewicz 2020-01-28 14:42:00 +01:00
parent 45076f33a0
commit 35658fdbb1
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -21,10 +21,10 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: e
def buildOs = 'linux'
def buildJdk = '8'
def buildMvn = '3.6.0'
def buildMvn = '3.6.2'
def runITsOses = ['linux', 'windows']
def runITsJdks = ['8', '11','12', '13']
def runITsMvn = '3.6.0'
def runITsJdks = ['8', '11', '13', '14']
def runITsMvn = '3.6.2'
def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
def tests