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:56:33 UTC

[maven-surefire] branch jdk13 updated (8a6bb52 -> a48bb46)

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

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


 discard 8a6bb52  testing JDK 12 and 13 with Maven 3+
     new a48bb46  testing JDK 12 and 13 with Maven 3+

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (8a6bb52)
            \
             N -- N -- N   refs/heads/jdk13 (a48bb46)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


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

Posted by ti...@apache.org.
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 a48bb4606a51b442851d1d4b6513dc3f5fd58c6c
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..c324d7c 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 = ['3.5.x', '3.3.x', '3.2.x']
+final def jdks = [13, 12]
 
 final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install', 'jacoco:report']