You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/03/06 17:41:03 UTC

[maven] 01/01: Build with Java 15

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch runITsWithJavaEA
in repository https://gitbox.apache.org/repos/asf/maven.git

commit fa867f209474babd0a8af487ede0faa0a48e02bc
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Sep 28 22:01:14 2019 +0200

    Build with Java 15
---
 Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index ff917a2..358c36a 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.6.2'
+def buildJdk = '15'
+def buildMvn = '3.6.x'
 def runITsOses = ['linux', 'windows']
-def runITsJdks = ['8', '11', '13', '14']
-def runITsMvn = '3.6.2'
+def runITsJdks = ['15']
+def runITsMvn = '3.6.x'
 def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
 def tests