Update README with correct snapshot repo

This commit is contained in:
jmp 2021-02-02 00:09:19 -08:00
parent 7b441ec481
commit c76f296185

View file

@ -132,8 +132,8 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
```xml ```xml
<!-- For snapshot builds --> <!-- For snapshot builds -->
<repository> <repository>
<id>sonatype-snapshots</id> <id>incendo-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url> <url>https://repo.incendo.org/content/repositories/snapshots</url>
</repository> </repository>
``` ```
@ -177,16 +177,16 @@ with conflicting dependencies:
``` ```
**gradle**: **gradle**:
```groovy ```kotlin
repositories { repositories {
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
mavenCentral() mavenCentral()
maven("https://repo.incendo.org/content/repositories/snapshots") // For snapshot builds
} }
``` ```
```groovy ```kotlin
dependencies { dependencies {
implementation 'cloud.commandframework:cloud-PLATFORM:1.4.0' implementation("cloud.commandframework", "cloud-PLATFORM", "1.4.0")
} }
``` ```