DevOps / Gradle interview questions
How do I force Gradle to download dependencies always?
you may refresh dependencies in your cache using the command line option --refresh-dependencies. Also deleting the cached files under ~/.gradle/caches would get the next Gradle build to download them again.
More Related questions...