You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/07/18 16:01:36 UTC

[maven] branch MNG-7515 updated (5ea8eb6b1 -> 8ff8ebcae)

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

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


    omit 5ea8eb6b1 [MNG-7515] Cannot see a dependency tree for apache-maven module
     add efa9f0c67 [MNG-7513] Address commons-io_commons-io vulnerability found in maven latest version
     new 8ff8ebcae [MNG-7515] Cannot see a dependency tree for apache-maven module

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   (5ea8eb6b1)
            \
             N -- N -- N   refs/heads/MNG-7515 (8ff8ebcae)

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-core/pom.xml                                 | 10 +++++
 .../apache/maven/project/ProjectBuilderTest.java   | 48 +++++++++-------------
 maven-embedder/pom.xml                             |  5 +++
 pom.xml                                            | 20 +++++++++
 4 files changed, 55 insertions(+), 28 deletions(-)


[maven] 01/01: [MNG-7515] Cannot see a dependency tree for apache-maven module

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

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

commit 8ff8ebcaeadab54190581a6e4cdadbd80f872d9f
Author: Rafael Chaves <ra...@abstratt.com>
AuthorDate: Mon Jul 18 13:56:38 2022 +0200

    [MNG-7515] Cannot see a dependency tree for apache-maven module
    
    This closes #770
---
 apache-maven/pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index b8f1c3bfe..52074576c 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -128,16 +128,16 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
-        <configuration>
-          <includeArtifactIds>jansi</includeArtifactIds>
-          <includes>org/fusesource/jansi/internal/native/Windows/**</includes>
-        </configuration>
         <executions>
           <execution>
             <id>unpack-jansi-native</id>
             <goals>
               <goal>unpack-dependencies</goal>
             </goals>
+            <configuration>
+              <includeArtifactIds>jansi</includeArtifactIds>
+              <includes>org/fusesource/jansi/internal/native/Windows/**</includes>
+            </configuration>
           </execution>
         </executions>
       </plugin>