This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch MNG-6522 in repository https://gitbox.apache.org/repos/asf/maven.git
commit 9611b74ea372f41abcf9b7f9d84b06f13800c64f Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Tue Dec 25 23:28:46 2018 +0100 [MNG-6522] Build and test with Java 12 --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ceb179d..37808d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,11 +20,11 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: env.BRANCH_NAME=='master'?'10':'5'))]) 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'] +def runITsMvn = '3.6.0' def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true def tests @@ -59,7 +59,7 @@ node(jenkinsEnv.nodeSelection(osNode)) { } } - tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', id: '_', remote: 'https://gitbox.apache.org/repos/asf/maven-integration-testing.git', traits: [[$class: 'jenkins.plugins.git.traits.BranchDiscoveryTrait'], [$class: 'GitToolSCMSourceTrait', gitTool: 'Default']]], targets: [BRANCH_NAME, 'master'] + tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', id: '_', remote: 'https://gitbox.apache.org/repos/asf/maven-integration-testing.git', traits: [[$class: 'jenkins.plugins.git.traits.BranchDiscoveryTrait'], [$class: 'GitToolSCMSourceTrait', gitTool: 'Default']]], targets: [BRANCH_NAME, 'MNG-6522'] } }