Reputation: 2566
Is there any way to force Maven to download all plugin dependencies without actually running any plugin goal?
Upvotes: 15
Views: 13218
Reputation: 137064
You can use the dependency:resolve-plugins
goal for that:
Goal that resolves all project plugins and reports and their dependencies.
Therefore, simply running
mvn dependency:resolve-plugins
will download all plugins dependencies.
Upvotes: 36