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 11:57:50 UTC

[maven] branch MNG-7515 created (now 5ea8eb6b1)

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


      at 5ea8eb6b1 [MNG-7515] Cannot see a dependency tree for apache-maven module

This branch includes the following new commits:

     new 5ea8eb6b1 [MNG-7515] Cannot see a dependency tree for apache-maven module

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.



[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 5ea8eb6b14d01a1597af581f9b18f0b81c6af678
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>