Output through mvn -X will print information indirectly. There is currently no other way to get the Maven plugin dependencies.
Update You can use the following command to get the list of plugin dependencies ( target-plugin target from the dependency plugin):
mvn org.apache.maven.plugins:maven-dependency-plugin:2.10:resolve-plugins
Shorter version (and itโs a bad habit to specify plugin versions)
mvn dependency:resolve-plugins
khmarbaise Aug 16 2018-11-11T00: 00Z
source share