wikier
wikier

Reputation: 2566

How to force Maven to download all plugins dependencies?

Is there any way to force Maven to download all plugin dependencies without actually running any plugin goal?

Upvotes: 15

Views: 13218

Answers (1)

Tunaki
Tunaki

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

Related Questions