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/" } }