I’m working with many different Gradle-based IntelliJ plugin projects.
The Gradle cache regularly grows very large (>185 GB) and the new cache of the plugin sounds great.
Is there a way to globally configure useCache, e.g. with a Gradle property in my global gradle.properties file? I’d rather not update all the projects to fix a local issue.
I only could find intellijPlatformCache, but that’s configuring the path, not the enabled state.
I’m in a similar situation, and ended up having to do both - adding useCache to each plugin, and then globally set the path in Gradle properties file. Luckily I have a fairly cookie-cutter build file for all my plugins (and a mechanism to push out changes to the file to all the repos), so it wasn’t too bad, but still.