Skip to content

Commit

Permalink
Some dependencies of Maven Plugins are expected to be in provided scope.
Browse files Browse the repository at this point in the history
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-model:jar:3.8.7:compile
  • Loading branch information
basil committed Jan 3, 2023
1 parent 3971519 commit 3ef2a6f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maven-jellydoc-plugin/pom.xml
Expand Up @@ -171,6 +171,11 @@
<artifactId>maven-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
Expand Down

0 comments on commit 3ef2a6f

Please sign in to comment.