Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable or enable Gradle / Maven auto-import for an IntelliJ IDEA project?

Tags:

I inadvertently clicked the link to enable auto import of a Gradle project I was working on. How do I disable it for the current project? The only option I'm finding is for disabling it by default for all projects.

I'm on IDEA 2017.1.

like image 432
M. Justin Avatar asked Apr 03 '17 19:04

M. Justin


1 Answers

Auto import is disabled by default while editing (and enabled for external changes) and an icon is displayed in the top right of the build file editor after you make changes to the build file so that you can load the changes and perform the import:

Load Gradle Changes

In 2020.2+ versions automatic reload behavior can be configured at Settings (Preferences on macOS) | Build, Execution, Deployment | Build Tools | Reload project after changes in the build scripts:

reload 1

reload 2

Starting with 2020.1.2 version there is a 3-state option for importing changes, it's available for both Gradle and Maven:

3-state option

In 2020.1.1 version you can enable or disable the automatic reload of the external changes (option not present in 2020.1):

Auto-reload external changes

See also the related feature request to make the UI more obvious as it may be hard to notice a small icon suggesting to import the settings.


Before 2020.1 version you could disable it in Settings | Build, Execution, Deployment | Build Tools | Gradle | Use auto-import:

auto import

like image 197
CrazyCoder Avatar answered Sep 20 '22 17:09

CrazyCoder