Update docs regarding snapshot builds

This commit is contained in:
Jason Penilla 2022-03-10 15:28:56 -07:00
parent d7182807de
commit 27ae568966
No known key found for this signature in database
GPG key ID: 0E75A301420E48F8
2 changed files with 6 additions and 6 deletions

View file

@ -133,8 +133,8 @@ Snapshot builds of Cloud are available through the [Sonatype OSS Snapshot reposi
```xml
<!-- For snapshot builds -->
<repository>
<id>incendo-snapshots</id>
<url>https://repo.incendo.org/content/repositories/snapshots</url>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
```
@ -181,7 +181,7 @@ with conflicting dependencies:
```kotlin
repositories {
mavenCentral()
maven("https://repo.incendo.org/content/repositories/snapshots") // For snapshot builds
maven("https://oss.sonatype.org/content/repositories/snapshots") // For snapshot builds
}
```