Skip to content

Commit 58941db

Browse files
authored
rename snapshot repo ids
1 parent c36e02d commit 58941db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/adventure/getting-started.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To use snapshot builds, you will need to add the following repository:
3333
```kotlin title="build.gradle.kts"
3434
repositories {
3535
maven(url = "https://central.sonatype.com/repository/maven-snapshots/") {
36-
name = "sonatype-oss-snapshots"
36+
name = "central-snapshots"
3737
}
3838
}
3939
```
@@ -42,7 +42,7 @@ To use snapshot builds, you will need to add the following repository:
4242
```groovy title="build.gradle"
4343
repositories {
4444
maven {
45-
name = 'sonatype-oss-snapshots1'
45+
name = 'central-snapshots'
4646
url = 'https://central.sonatype.com/repository/maven-snapshots/'
4747
}
4848
}
@@ -52,7 +52,7 @@ To use snapshot builds, you will need to add the following repository:
5252
```xml title="pom.xml"
5353
<repositories>
5454
<repository>
55-
<id>sonatype-oss-snapshots1</id>
55+
<id>central-snapshots</id>
5656
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
5757
</repository>
5858
</repositories>

0 commit comments

Comments
 (0)