diff --git a/README.md b/README.md index fcda34e7..f01855cf 100644 --- a/README.md +++ b/README.md @@ -132,8 +132,8 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi ```xml - sonatype-snapshots - https://oss.sonatype.org/content/repositories/snapshots + incendo-snapshots + https://repo.incendo.org/content/repositories/snapshots ``` @@ -177,16 +177,16 @@ with conflicting dependencies: ``` **gradle**: -```groovy +```kotlin repositories { - maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' } mavenCentral() + maven("https://repo.incendo.org/content/repositories/snapshots") // For snapshot builds } ``` -```groovy +```kotlin dependencies { - implementation 'cloud.commandframework:cloud-PLATFORM:1.4.0' + implementation("cloud.commandframework", "cloud-PLATFORM", "1.4.0") } ```