summaryrefslogtreecommitdiffstats
path: root/abi-check-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 /abi-check-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 'abi-check-plugin')
-rw-r--r--abi-check-plugin/pom.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/abi-check-plugin/pom.xml b/abi-check-plugin/pom.xml
index 03b2e7c8b60..8d782b1d426 100644
--- a/abi-check-plugin/pom.xml
+++ b/abi-check-plugin/pom.xml
@@ -18,10 +18,12 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>