From cc64c92a2d91fdfb909f2cdd5dadeae4b3c98de1 Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Mon, 9 Oct 2023 15:48:34 +0200 Subject: [PATCH] Apply SNAPSHOT cache disabling thing to subprojects as well --- build.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 733f449b..ef5a115f 100644 --- a/build.gradle +++ b/build.gradle @@ -29,9 +29,11 @@ project.ext { apply from: 'tycho_build.gradle' -configurations.all { - resolutionStrategy { - cacheChangingModulesFor(0, TimeUnit.SECONDS) +allprojects { + configurations.all { + resolutionStrategy { + cacheChangingModulesFor(0, TimeUnit.SECONDS) + } } } -- GitLab