From e30f3f7cc3752747ceda28a5605d569dc6955e6e Mon Sep 17 00:00:00 2001 From: Emux Date: Wed, 1 Feb 2017 10:29:13 +0200 Subject: [PATCH] Update integration guide --- docs/Integration.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/Integration.md b/docs/Integration.md index a678f564..0f5680e1 100644 --- a/docs/Integration.md +++ b/docs/Integration.md @@ -49,6 +49,11 @@ We publish regularly SNAPSHOT builds to Sonatype OSS Repository Hosting. You need to add the repository: ```groovy +configurations.all { + // check for latest snapshot on every build + resolutionStrategy.cacheChangingModulesFor 0, 'seconds' +} + repositories { maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } }