Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to force Maven to download all plugins dependencies?

Tags:

maven

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

like image 815
wikier Avatar asked Feb 25 '16 12:02

wikier


1 Answers

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.

like image 146
Tunaki Avatar answered Oct 11 '22 15:10

Tunaki