summaryrefslogtreecommitdiffstats
path: root/bundle-plugin
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-04-22 14:26:24 +0200
committergjoranv <gv@verizonmedia.com>2022-04-22 14:52:06 +0200
commit955e9e6ae24f60a5163df171a448db21f127cb33 (patch)
tree3ca305a5968ad9f0bd224ac8206604d45ab9bb15 /bundle-plugin
parente6c8f49cc768573baa37f3d6b59ef6fd9c1bdc13 (diff)
Fix and clean up deps for maven plugins.
- Set scope to provided to silence error messages from maven-plugin-plugin >=3.6.2 Example: Some dependencies of Maven Plugins are expected to be in provided scope. Please make sure that dependencies listed below declared in POM have set '<scope>provided</scope>' as well. The following dependencies are in wrong scope: * org.apache.maven:maven-settings:jar:3.8.5:compile
Diffstat (limited to 'bundle-plugin')
-rw-r--r--bundle-plugin/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/bundle-plugin/pom.xml b/bundle-plugin/pom.xml
index d0a6d43d9c5..7993dfecafd 100644
--- a/bundle-plugin/pom.xml
+++ b/bundle-plugin/pom.xml
@@ -24,7 +24,13 @@
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
+ <artifactId>maven-artifact</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -33,6 +39,15 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-core</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>