You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/01/19 23:53:02 UTC

[maven-surefire] 01/01: testing JDK 12 and 13 with Maven 3+

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

tibordigana pushed a commit to branch jdk13
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 8a6bb522c5cca61ee3c9af071158d0efbc098dd5
Author: tibordigana <ti...@apache.org>
AuthorDate: Sun Jan 20 00:52:51 2019 +0100

    testing JDK 12 and 13 with Maven 3+
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e72aa96..455bde7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -31,8 +31,8 @@ properties(
 )
 
 final def oses = ['linux':'ubuntu && !H24', 'windows':'Windows']
-final def mavens = env.BRANCH_NAME == 'master' ? ['3.5.x', '3.3.x', '3.2.x'] : ['3.5.x']
-final def jdks = env.BRANCH_NAME == 'master' ? [12, 11, 8, 7] : [11, 8, 7]
+final def mavens = env.BRANCH_NAME == ['3.5.x', '3.3.x', '3.2.x']
+final def jdks = env.BRANCH_NAME == [13, 12]
 
 final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install', 'jacoco:report']