You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/12/06 13:50:14 UTC

[maven-studies] branch maven-buildinfo-plugin updated (6d455ed -> 6bc14da)

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

hboutemy pushed a change to branch maven-buildinfo-plugin
in repository https://gitbox.apache.org/repos/asf/maven-studies.git.


 discard 6d455ed  added a note about Maven minumum version algorithm
     new 6bc14da  added a note about Maven minumum version algorithm

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   (6d455ed)
            \
             N -- N -- N   refs/heads/maven-buildinfo-plugin (6bc14da)

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:
 .../buildinfo/RequiredMavenVersionFinder.java      | 290 ---------------------
 1 file changed, 290 deletions(-)
 delete mode 100644 src/main/java/org/apache/maven/plugins/buildinfo/RequiredMavenVersionFinder.java


[maven-studies] 01/01: added a note about Maven minumum version algorithm

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

hboutemy pushed a commit to branch maven-buildinfo-plugin
in repository https://gitbox.apache.org/repos/asf/maven-studies.git

commit 6bc14da1dad9711ea5fb1bfcba731252a9156bf2
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Fri Dec 6 14:38:00 2019 +0100

    added a note about Maven minumum version algorithm
---
 src/main/java/org/apache/maven/plugins/buildinfo/SaveMojo.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/maven/plugins/buildinfo/SaveMojo.java b/src/main/java/org/apache/maven/plugins/buildinfo/SaveMojo.java
index d4baf45..37d105f 100644
--- a/src/main/java/org/apache/maven/plugins/buildinfo/SaveMojo.java
+++ b/src/main/java/org/apache/maven/plugins/buildinfo/SaveMojo.java
@@ -120,6 +120,7 @@ public class SaveMojo
             p.println( "mvn.version=" + MavenVersion.createMavenVersionString() );
             if ( ( project.getPrerequisites() != null ) && ( project.getPrerequisites().getMaven() != null ) )
             {
+                // TODO wrong algorithm, should reuse algorithm written in versions-maven-plugin
                 p.println( "mvn.minimum.version=" + project.getPrerequisites().getMaven() );
             }
             p.println();