From 83cbc3cefe1817e0d970af6017115d96473efcc3 Mon Sep 17 00:00:00 2001 From: Jagdeep Singh Date: Fri, 9 Dec 2016 13:56:37 +0530 Subject: [PATCH] add fabric maven url under allprojects Previously just writing repositories makes it confusing whether to add the url under `buildscript` or `allprojects`. --- auth/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/auth/README.md b/auth/README.md index 2906998ce..70db33dd8 100644 --- a/auth/README.md +++ b/auth/README.md @@ -53,9 +53,11 @@ dependencies { and add the Fabric repository ```groovy -repositories { - // ... - maven { url 'https://maven.fabric.io/public' } +allprojects { + repositories { + // ... + maven { url 'https://maven.fabric.io/public' } + } } ```