From 49fc32e2144903704f44a6cc9d7f78e80dfc2e1e Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Thu, 1 Oct 2015 17:07:13 +0200 Subject: [PATCH] Check new snapshots for every build --- spring-web-reactive/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spring-web-reactive/build.gradle b/spring-web-reactive/build.gradle index 4d003ee73a..5e25378a19 100644 --- a/spring-web-reactive/build.gradle +++ b/spring-web-reactive/build.gradle @@ -25,6 +25,11 @@ repositories { maven { url 'http://repo.spring.io/snapshot' } // Reactor snapshot } +configurations.all { + // check for updates every build + resolutionStrategy.cacheChangingModulesFor 0, 'seconds' +} + dependencies { compile "org.springframework:spring-core:4.2.0.RELEASE" compile "org.springframework:spring-web:4.2.0.RELEASE"