Skip to content

Commit 83cbc3c

Browse files
authored
add fabric maven url under allprojects
Previously just writing repositories makes it confusing whether to add the url under `buildscript` or `allprojects`.
1 parent d783f19 commit 83cbc3c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

auth/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,11 @@ dependencies {
5353
and add the Fabric repository
5454

5555
```groovy
56-
repositories {
57-
// ...
58-
maven { url 'https://maven.fabric.io/public' }
56+
allprojects {
57+
repositories {
58+
// ...
59+
maven { url 'https://maven.fabric.io/public' }
60+
}
5961
}
6062
```
6163

0 commit comments

Comments
 (0)