Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rebuilding Maven indexes Stuck at 0%

I am trying to rebuild the Maven index in Eclipse, but it has been stuck at 0% for hours.

I can't find any results when trying to add dependencies. I have tried running Eclipse as an Administrator and ticking "update repositories" on startup, but neither option worked.

I am using Windows 8.1 Enterprise Edition

Rebuilding Indexes: (0%)

like image 243
Mohammed Adel Avatar asked Mar 18 '16 14:03

Mohammed Adel


2 Answers

  1. Leave Eclipse
  2. Go to [your-workspace-folder]
  3. Remove .metadata/.plugins/org.eclipse.m2e.core/nexus
  4. Remove .metadata/.plugins/org.maven.ide.eclipse/nexus
  5. Restart Eclipse

If it does not help, try also

  1. remove [your-home-folder]/.m2/repository/.cache/m2e/${m2e.version}.

See also https://stackoverflow.com/a/16444984/2886891


To prevent the impact of various bugs from the m2e plugin, I prefer using always the external maven (you have to have it installed of course):

enter image description here

like image 80
Honza Zidek Avatar answered Oct 07 '22 06:10

Honza Zidek


Do this, just as Honza Zidek did:

  1. Leave Eclipse
  2. Go to [your-workspace-folder]
  3. Remove .metadata/.plugins/org.eclipse.m2e.core/nexus
  4. Remove .metadata/.plugins/org.maven.ide.eclipse/nexus
  5. Restart Eclipse
  6. remove [your-home-folder]/.m2/repository/.cache/m2e.

Click Window -> Show view -> Other -> Maven Repositories In the appeared tab click Global Repositories. Right click on central -> Rebuild Index.

It took me 30 minutes to rebuild it. All the time Progress bar was 0%. Eclipse downloaded about 10Gb in [your-home-folder]/.m2/repository folder. Then it deleted 8Gb.

To check if download is going, just refresh C drive (or the drive .m2 folder is loceted).

like image 38
Mihai Avatar answered Oct 07 '22 07:10

Mihai