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 2019/03/14 19:00:42 UTC

[maven] branch runITsWithJavaEA updated (5eda74d -> b46c3cb)

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 5eda74d  [MNG-6522] Build and test with Java 12-ea and 13-ea
     add 37676a2  [MNG-6599] use version from parent if necessary, like groupId
     add 4bec550  [MNG-6600] add inputlocation tracking for default lifecycle executions
     add 0b10fe7  [MNG-6597] add input location tracking for plugins configuration
     add 49c8f17  [MNG-6601] add input location tracking for m-site-p converted reports
     new b46c3cb  [MNG-6522] Build and test with Java 12-ea and 13-ea

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   (5eda74d)
            \
             N -- N -- N   refs/heads/runITsWithJavaEA (b46c3cb)

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:
 .../internal/DefaultLifecyclePluginAnalyzer.java   | 22 ++++++++-
 .../maven/model/building/ModelProblemUtils.java    |  4 ++
 .../model/plugin/DefaultReportingConverter.java    | 54 +++++++++++++++-------
 .../model/superpom/DefaultSuperPomProvider.java    |  2 +-
 maven-model/pom.xml                                |  1 +
 pom.xml                                            |  4 +-
 6 files changed, 67 insertions(+), 20 deletions(-)


[maven] 01/01: [MNG-6522] Build and test with Java 12-ea and 13-ea

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 b46c3cb994b03ed3858e43a8ff1c4d5973f6301c
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Tue Dec 25 23:28:46 2018 +0100

    [MNG-6522] Build and test with Java 12-ea and 13-ea
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index bcf5310..e56b90c 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 = '13'
 def buildMvn = '3.6.0'
 def runITsOses = ['linux', 'windows']
-def runITsJdks = ['7', '8', '11']
+def runITsJdks = ['12','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