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 bfe2105372813799548d61c4398cb69c52490141 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Tue Dec 25 23:28:46 2018 +0100 Build and test with Java 13-ea --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 382e531..41ccfb6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,10 +20,10 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: env.BRANCH_NAME=='master'?'5':'1'))]) def buildOs = 'linux' -def buildJdk = '12' +def buildJdk = '13' def buildMvn = '3.6.0' def runITsOses = ['linux', 'windows'] -def runITsJdks = ['12','13'] +def runITsJdks = ['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 @@ -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, 'java13'] } }
