java - All maven modules and submodules are shown in the root tree list -


this ide related question eclipse. i'm using version: luna release (4.4.0) integrated support maven. i'm wondering if it's possible have more structure in package explorer of eclipse.

lets have following maven setup:

+ parent | + module 1 | | + domain | | + infra | | + domainimpl | + module 2 | | + domain | | + infra | | + domainimpl 

this valid maven structure. eclipse show every project/module in package explorer:

+ parent + module 1 + domain + infra + domainimpl + module 2 + domain + infra + domainimpl 

and of course not valid, since projects "duplicated". see following picture:

enter image description here

is there way have eclipse correctly order modules correctly? because they're on filesystem:

enter image description here

if import maven project can select change naming templates. enter image description here can solve problem duplicate artifact names in projects.


Comments