In Netbeans, how to add a module to a multi module maven project using the IDE. In Eclipse I can right click project > add > new > other > maven module. Does netbeans have a similar feature.
|
This does not work with Netbeans 7.0.x In Netbeans 7.1:
|
|||
|
|
Since you use the word "module" I suppose you mean a Netbeans Platform module being added to a Netbeans Platform application ? Here's how to do it (Netbeans IDE v7.1.2):
By doing it the above way the new module will automatically be added to your parent application as a dependency. The module will of course be autonomous and can of course be used in several projects if you like but for me it most often makes sense to put the module with the application to which it naturally belongs, i.e. everything in same directory tree. If you prefer to do it in separated directory trees then you must add the dependency manually. |
|||
|
|