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

Viewed 3610

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

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.

Related