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/05/15 21:01:02 UTC

[maven-dependency-analyzer] branch MSHARED-810 updated (28b1dae -> 3f6a148)

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

slachiewicz pushed a change to branch MSHARED-810
in repository https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git.


 discard 28b1dae  Run tests also with Java 12
     new 3f6a148  Run tests also with Java 12

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   (28b1dae)
            \
             N -- N -- N   refs/heads/MSHARED-810 (3f6a148)

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:
 .../dependency/analyzer/DefaultProjectDependencyAnalyzerTest.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[maven-dependency-analyzer] 01/01: Run tests also with Java 12

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

slachiewicz pushed a commit to branch MSHARED-810
in repository https://gitbox.apache.org/repos/asf/maven-dependency-analyzer.git

commit 3f6a148506e43c6e400ae1261e9390ddce4604f6
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Wed May 15 22:28:19 2019 +0200

    Run tests also with Java 12
    
    Minimum runtime Java 7
---
 Jenkinsfile                                                           | 2 +-
 .../dependency/analyzer/DefaultProjectDependencyAnalyzerTest.java     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 09ac70f..b21831c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,4 +17,4 @@
  * under the License.
  */
 
-asfMavenTlpStdBuild()
+asfMavenTlpStdBuild(jdks:['7','8','11','12'])
diff --git a/src/test/java/org/apache/maven/shared/dependency/analyzer/DefaultProjectDependencyAnalyzerTest.java b/src/test/java/org/apache/maven/shared/dependency/analyzer/DefaultProjectDependencyAnalyzerTest.java
index 84b0d48..09fc24c 100644
--- a/src/test/java/org/apache/maven/shared/dependency/analyzer/DefaultProjectDependencyAnalyzerTest.java
+++ b/src/test/java/org/apache/maven/shared/dependency/analyzer/DefaultProjectDependencyAnalyzerTest.java
@@ -341,8 +341,8 @@ public class DefaultProjectDependencyAnalyzerTest
         if ( SystemUtils.isJavaVersionAtLeast( JavaVersion.JAVA_9 )
              && !properties.containsKey( "maven.compiler.source" ) )
         {
-          properties.put( "maven.compiler.source", "1.6" );
-          properties.put( "maven.compiler.target", "1.6" );
+          properties.put( "maven.compiler.source", "1.7" );
+          properties.put( "maven.compiler.target", "1.7" );
         }
         
         String httpsProtocols = System.getProperty( "https.protocols" );