This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch java13 in repository https://gitbox.apache.org/repos/asf/maven.git
commit bf306cb7b6ad39216c34d1be34f80b8bdfd89c13 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Fri Jan 11 21:08:07 2019 +0100 Run Maven Core Integration Test with JDK 12 (latest) and 13-ea --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7c580cd..382e531 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,11 +20,11 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: env.BRANCH_NAME=='master'?'5':'1'))]) def buildOs = 'linux' -def buildJdk = '8' -def buildMvn = '3.5.4' +def buildJdk = '12' +def buildMvn = '3.6.0' def runITsOses = ['linux', 'windows'] -def runITsJdks = ['7', '8', '11'] -def runITsMvn = '3.5.4' +def runITsJdks = ['12','13'] +def runITsMvn = '3.6.0' def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true def tests
