1

enter image description here

I go this problem with maven, something happened when I tried to udate it. Now its just eating up hadrdrive space, I had 10 GB free but it was not enough for update.

All my dependecies were red before i tried to update. Has anyone a clue on whats going on?

The exception is in swedish and says that I got no disk space left, but I had like 10 gb when i started.

oneoe
  • 53
  • 1
  • 2
  • 8
  • And did you check if you have any space left on your drive? Can you run Maven on the command line for the project? – Wim Deblauwe May 30 '18 at 10:58
  • I had like 500mb when i cancelled the update, now I got 3gb. How do I do that? – oneoe May 30 '18 at 11:06
  • Try to clear local repository to free up some space (in case you have there some old dependencies which are not in use) and run update again. And to run Maven in command line go to the project folder and run `mvn clean install` – streetturtle May 30 '18 at 16:48
  • @Seno Delete IDE system folder (https://intellij-support.jetbrains.com/hc/articles/206544519), then let it reindex the repository, see also http://stackoverflow.com/a/42427510/104891. You may need several gigabytes free for the repository index in IntelliJ IDEA. – CrazyCoder May 30 '18 at 18:55
  • @CrazyCoder Thank you this did it! – oneoe May 31 '18 at 13:25

1 Answers1

1

Delete IDE system folder, then let it re-index the repository, see also this answer.

You may need several gigabytes free for the repository index in IntelliJ IDEA.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904