What are nested projects in eclipse / java

Can someone provide useful links regarding "nesting of projects", I ask this question specifically in the context of java / eclipse.

+6
source share
4 answers

In the context of eclipse, this means that you are creating a new project and are trying to create a new project as part of the first project. As far as I know, this is not possible. For more information, Ten Architectural Issues in Eclipse .

+8
source

Starting with Milestone 5 version 4.5, the Eclipse environment supports nested / hierarchical views of projects: https://www.eclipse.org/eclipse/news/4.5/M5/

+8
source

As the shlingel said, eclipse cannot process a nested project. Typically, nested projects are subprojects or modules of a larger project, and they often inherit settings, while the base project can manage nested projects.

Using Maven and the m2eclipse plugin, you can get support for nested projects. A file system view would be nested, however eclipse cannot display it as such. In eclipse, they would look like parallel projects, but the m2eclipse plugin has some support, at least to provide some of the functionality embedded in it.

0
source

One way to visualize visual projects in eclipse is through working sets. However, note that the structure of the working set is only a visual presentation, it does not create nested projects and does not affect the directory structure (just like Schlingel and Thomas said).

0
source

Source: https://habr.com/ru/post/891083/


All Articles