4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Intellij IDEAでGradleのキャッシュをクリアする方法。

Posted at

はじめに

Intellij IDEAを使用して開発を行っている最中にいきなりビルドが通らなくなったりすることがたま〜〜に発生します。

そのような時にGradleのキャッシュをクリアしてみると治る場合があるのですが、キャッシュクリアにはいくつか方法があるので紹介したいと思います。

  • IntellijのInvalidate Cashes
  • キャッシュのディレクトリ削除

IntellijのInvalidate Cashes

こちらはIntellijから簡単に行えるキャッシュクリア方法。

File→Invalidate Cashesを選択
 

キャッシュをクリアする項目を選択してから、IDEをRestart。

キャッシュのディレクトリ削除

IntellijのInvalidate Cashesよりもクリアされる項目が多いです。

Gradleのキャッシュは以下ディレクトリに作成されています。

~/.gradle/caches/

このディレクトリごと削除してしませばGradleのキャッシュはすべてクリアされます。

$ rm -rf ~/.gradle/caches/

こちらはIntellijのInvalidate Cashesに比べて時間が掛かるので注意してください。

さいごに

Gradleのキャッシュクリアでお困りのときは一度試してみるといいかもしれません!

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?