Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between "build" and "build with dependencies" in NetBeans?

Tags:

netbeans

Can anyone tell me what the difference is between 'build' and 'build with dependencies' commands in the NetBeans IDE?

like image 242
Twiggy Avatar asked Oct 18 '22 05:10

Twiggy


1 Answers

From https://platform.netbeans.org/tutorials/nbm-maven-quickstart.html :

The action mapped to "Build with Dependencies" builds the project using the Reactor plugin. When you build a project using the Reactor plugin, the dependencies of the sub-projects are built before the containing project is built.

So it seems that the usual "Build" action doesn't take into account the build order.

like image 70
Francesco Rogo Avatar answered Oct 21 '22 04:10

Francesco Rogo