From ba59699ed84006c7ac470799a075b458bcd544f4 Mon Sep 17 00:00:00 2001 From: Tomer Figenblat Date: Tue, 30 May 2023 13:57:42 +0300 Subject: [PATCH] chore: set gradle to always update snapshots version when building Signed-off-by: Tomer Figenblat --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index b48425b..46cbaee 100644 --- a/build.gradle +++ b/build.gradle @@ -43,6 +43,11 @@ publishPlugin { } dependencies { + configurations.all { + // this means SNAPSHOT versions will be updated for every build + resolutionStrategy.cacheChangingModulesFor 0, 'seconds' + } + // WATCH OUT - lsp4intellij version 0.95.1 breaks diagnostics for opened files implementation 'com.github.ballerina-platform:lsp4intellij:0.95.0' constraints {