From c76f296185f5c447efadef433502e1e1273eadce Mon Sep 17 00:00:00 2001 From: jmp Date: Tue, 2 Feb 2021 00:09:19 -0800 Subject: [PATCH] Update README with correct snapshot repo --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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") } ```