We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c2fc1 commit 6062ee2Copy full SHA for 6062ee2
README.MD
@@ -11,10 +11,14 @@ Features
11
12
Gradle setup (JitPack)
13
----------------------
14
-1) Add the JitPack repository:
+1) Add it in your settings.gradle.kts at the end of repositories:
15
```kotlin
16
-repositories {
17
- maven { url = uri("https://jitpack.io") }
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
18
+ repositories {
19
+ mavenCentral()
20
+ maven { url = uri("https://jitpack.io") }
21
+ }
22
}
23
```
24
2) Depend on your GitHub fork/tag:
0 commit comments