Gaurang Dobariya
Gaurang Dobariya

Reputation: 11

Nested 2 level maven project not loading in eclipse

I have project structure like of one module and on top of this sub-parent I have my main directory called parent.

bom.pom.xml defines version of the all child-module so that whenever it is required by the other sub-parent then it just need to import the bom of the previous one. This is working fine and producing correct artifact in Maven but it takes about 1 hour to load in eclipse with 8 gbs memory

sub-parent/
|-- bom.pom.xml
|-- pom.xml
|-- child-module/
|   |-- src/
|       |-- main/
|           |-- java/
|               |-- com/
|                   |-- example/
|                       |-- MyJavaClass.java
|   |-- pom.xml

I tried just loading without building in eclipse but then it will create issue in terms of reflecting changes of one module to another module

Upvotes: 1

Views: 23

Answers (0)

Related Questions