is it possible to configure the location of the lo...
# community-support
g
is it possible to configure the location of the local gradle cache
.gradle
in a build?
s
You should be able to do so by setting the
GRADLE_HOME
environment variable.
g
wait, I don't mean the one in the home, I mean the one in the build
s
Ah, sorry, that I don't know.
👍 1
v
And for sure not
GRADLE_HOME
, that is where the Gradle distribution is. You probably meant
GRADLE_USER_HOME
. But yeah, the other is also configurable by Gradle property or commandline argument. Something like
--project-cache-dir
.
👍 1
❤️ 1
g
cool, thanks!
👌 1