Is there a command or way where we can find the dependencies for a plugin in maven?
Say I have a plugin in my pom.xml:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
Now how do I know what are the dependencies for this plugin? Can we see them visually? How do I list out the dependencies for plugin?
Is this the command: mvn dependency:resolve-plugins
?