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

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git

commit 62afd0b5a2fecad9fec7433e0c3940d1ca9c6628
Author: HervĂ© Boutemy <[email protected]>
AuthorDate: Sun Jan 2 19:31:43 2022 +0100

    scope = provided for artifacts provided by Maven core
---
 .gitignore | 1 +
 pom.xml    | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/.gitignore b/.gitignore
index 19e9e0b..62c7b3f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@ build
 .surefire-*
 .DS_Store
 *.versionsBackup
+/.factorypath
diff --git a/pom.xml b/pom.xml
index c5cc6da..eb71f91 100644
--- a/pom.xml
+++ b/pom.xml
@@ -62,6 +62,7 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
       <version>${mvnversion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
@@ -77,16 +78,19 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-core</artifactId>
       <version>${mvnversion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-compat</artifactId>
       <version>${mvnversion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-repository-metadata</artifactId>
       <version>${mvnversion}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.reporting</groupId>
@@ -112,6 +116,7 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-aether-provider</artifactId>
       <version>${mvnversion}</version>
+      <scope>provided</scope>
     </dependency>
     <!-- https://mvnrepository.com/artifact/org.kohsuke/github-api -->
     <dependency>

Reply via email to