Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ Development builds of Cloud are available on the Sonatype Snapshots Repository:
```xml
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</repository>
```

=== "Gradle (Kotlin)"

```kotlin
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
maven("https://central.sonatype.com/repository/maven-snapshots/") {
name = "sonatype-snapshots"
mavenContent {
snapshotsOnly()
Expand All @@ -71,7 +71,7 @@ Development builds of Cloud are available on the Sonatype Snapshots Repository:

```groovy
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
url "https://central.sonatype.com/repository/maven-snapshots/"
name "sonatype-snapshots"
mavenContent {
snapshotsOnly()
Expand Down
Loading