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/28 22:18:12 UTC

[maven] branch runITsWithJavaEA updated (1bf5960 -> 4cc44f2)

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

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


 discard 1bf5960  Build with Java 15
 discard fbccfa9  Run Integration Tests with Java 8, 11, 14 and 15
     add c548ce5  Adjust JDKs in Jenkinsfile
     new 4cc44f2  Build with Java 15

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   (1bf5960)
            \
             N -- N -- N   refs/heads/runITsWithJavaEA (4cc44f2)

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:


[maven] 01/01: Build with Java 15

Posted by sl...@apache.org.
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 4cc44f2411b3ca918a2581d7051e02c23000045f
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Sep 28 22:01:14 2019 +0200

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

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