2

I am interested in reducing the time between refresh of SNAPSHOT versions of dependencies in Gradle. How can I configure it and what is the default value?

Sergey
  • 3,253
  • 2
  • 33
  • 55

1 Answers1

3

Snapshots treated in Gradle as changing modules. By default, they are refreshed every 24 hours. There is an explanation available on how to configure it in the Gradle documentation

Sergey
  • 3,253
  • 2
  • 33
  • 55