This is an automated email from the ASF dual-hosted git repository.
michaelo pushed a commit to branch maven-3.8.x
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/maven-3.8.x by this push:
new 9afae9f4a [MNG-7515] Cannot see a dependency tree for apache-maven
module
9afae9f4a is described below
commit 9afae9f4a46b5df423e33397586e5e870a0b7d0e
Author: Rafael Chaves <[email protected]>
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 334870938..f65e4b6f2 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -126,16 +126,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>