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:04:51 UTC

[maven] branch maven-3.9.x updated: [MNG-7515] Cannot see a dependency tree for apache-maven module

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

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


The following commit(s) were added to refs/heads/maven-3.9.x by this push:
     new eaac5f345 [MNG-7515] Cannot see a dependency tree for apache-maven module
eaac5f345 is described below

commit eaac5f345828d4b7b846dcc6da21a5f77822bfaa
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 bf5f377a0..de61a4b27 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -119,16 +119,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>