Sutty1000
Sutty1000

Reputation: 805

Update single dependency in IntelliJ based on gradle build

Is it possible to get IntelliJ to update a single dependency rather than have to refresh all dependencies via the "Refresh all Gradle projects" button in the Gradle side tab?

The reason I ask is that a full refresh takes several minutes on our project (Long enough for me to write this SO question!) and I just want to update a dependency on another project I am updating locally.

Upvotes: 12

Views: 2828

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 401897

Unfortunatelly, it's not possible due to the Gradle architecture. We can't get partial data using the API and the full build has to be run to get the actual state of the dependencies.

Upvotes: 4

Related Questions