Reputation: 1292
I have installed Eclipse Juno and integrated Maven, but when I try to create a Maven project, it is showing the error, Retrieving archetypes: GC overhead limit exceeded
. Before I had Juno installed, I Kepler installed and used the same Maven and it worked fine.
Upvotes: 2
Views: 1905
Reputation: 240898
You might have lost your JVM tuning around heap size with new installation
edit your eclipse.ini
and modify the values below to change Java's initial & maximum memory allocation
-vmargs
-Xms512mm
-Xmx2g
Provide appropriate values as per your environment.
Upvotes: 7