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/01/28 00:47:59 UTC

[maven] branch MNG-3699-Java8 updated (314e212 -> afe085e)

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

slachiewicz pushed a change to branch MNG-3699-Java8
in repository https://gitbox.apache.org/repos/asf/maven.git.


 discard 314e212  [MNG-3699] set minimum JDK to 8 - build with 14, 15
     add cdb2cd0  [MNG-6071] Normalize relative paths for working directory
     new afe085e  [MNG-3699] set minimum JDK to 8 - build with 14, 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   (314e212)
            \
             N -- N -- N   refs/heads/MNG-3699-Java8 (afe085e)

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-embedder/src/main/java/org/apache/maven/cli/ResolveFile.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[maven] 01/01: [MNG-3699] set minimum JDK to 8 - build with 14, 15

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch MNG-3699-Java8
in repository https://gitbox.apache.org/repos/asf/maven.git

commit afe085ece44b066c27d1f1d74a190b890e782198
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed Nov 7 20:30:00 2018 +0100

    [MNG-3699] set minimum JDK to 8 - build with 14, 15
---
 Jenkinsfile | 6 +++---
 pom.xml     | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 304fdc5..6b445a7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,10 +21,10 @@ properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: e
 
 def buildOs = 'linux'
 def buildJdk = '8'
-def buildMvn = '3.6.0'
+def buildMvn = '3.6.2'
 def runITsOses = ['linux', 'windows']
-def runITsJdks = ['8', '11','12', '13']
-def runITsMvn = '3.6.0'
+def runITsJdks = ['8', '11', '12', '13', '14', '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
 
diff --git a/pom.xml b/pom.xml
index 3148a97..d3c66f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@ under the License.
   <inceptionYear>2001</inceptionYear>
 
   <properties>
+    <javaVersion>8</javaVersion>
     <maven.version>3.0.5</maven.version>
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>