When exactly is .gradle folder created in the home directory in Linux?

gradle, linux

Solution

Gradle downloads dependencies just-in-time when they are first used. `~/.gradle` is used for many purposes, and may be created as soon as Gradle is first started.

Problem

Okay so when exactly does gradle begin downloading dependencies? And when exactly is .gradle folder created in the home directory.

Original source