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
<!-- For snapshot builds -->
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<id>incendo-snapshots</id>
<url>https://repo.incendo.org/content/repositories/snapshots</url>
</repository>
```
@ -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")
}
```