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/01/19 19:10:43 UTC

[maven] branch runITsWithJavaEA updated (bf306cb -> f1c4cac)

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 bf306cb  Run Maven Core Integration Test with JDK 12 (latest) and 13-ea
     add 8e5ecf0  fixed link (that goes to implementation in maven-core)
     add 375cd7b  [MNG-6559] Fix mailing list URL (#230)
     add fdf5d92  renamed variables for better understanding
     add 396291b  [MNG-6069] Migrate to non deprecated parts of Commons CLI (#153)
     add 2928dc6  refactoring: extracted initParent() method
     add 049b7a7  refactoring: reduced try/catch scope
     add ae1c32a  [MNG-6533] Test: ProjectBuildingException miss reference to MavenProject
     add 8b7055f  [MNG-6533] Prefer passing the interim project in ProjectBuildingResult
     add 27332cf  [MNG-6533] ProjectBuilder report ModelProblem instead of Exception
     add 24c762d  [MNG-6533] catch InvalidArtifactRTException runtime exception
     new f1c4cac  Run Maven Core Integration Test with JDK 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   (bf306cb)
            \
             N -- N -- N   refs/heads/runITsWithJavaEA (f1c4cac)

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:
 CONTRIBUTING.md                                    |   4 +-
 Jenkinsfile                                        |   6 +-
 apache-maven/README.txt                            |   2 +-
 .../plugin/DefaultLifecycleBindingsInjector.java   |  14 +-
 .../maven/project/DefaultProjectBuilder.java       | 344 ++++++++++++---------
 .../apache/maven/project/ProjectBuilderTest.java   |  78 +++++
 .../resources/projects/artifactMissingVersion.xml  |  34 ++
 .../pom.xml => resources/projects/badPom.xml}      |  10 +-
 .../main/java/org/apache/maven/cli/CLIManager.java | 124 +++++---
 .../main/java/org/apache/maven/cli/MavenCli.java   |  50 +--
 .../java/org/apache/maven/cli/MavenCliTest.java    |   4 +-
 maven-model-builder/src/site/apt/index.apt         |   4 +-
 pom.xml                                            |  10 -
 13 files changed, 421 insertions(+), 263 deletions(-)
 create mode 100644 maven-core/src/test/resources/projects/artifactMissingVersion.xml
 copy maven-core/src/test/{projects/default-maven/cyclic-reference/pom.xml => resources/projects/badPom.xml} (53%)


[maven] 01/01: Run Maven Core Integration Test with JDK 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 f1c4cac9821bfcb714e7662edcd78cda89c86d6d
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Fri Jan 11 21:08:07 2019 +0100

    Run Maven Core Integration Test with JDK 12-ea and 13-ea
    
    Build with 13-ea (latest) and run ITs with 12 and 13
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7c580cd..8f9c036 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.5.4'
 def runITsOses = ['linux', 'windows']
-def runITsJdks = ['7', '8', '11']
+def runITsJdks = ['12','13']
 def runITsMvn = '3.5.4'
 def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
 def tests