Skip to content

Commit 7f22be1

Browse files
committed
update docs about snapshots
1 parent 3973f0a commit 7f22be1

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ dependencies {
8484
}
8585
```
8686

87+
> **Snapshots:** As of 5th June 2025, Stove's snapshot packages are hosted on [Central Sonatype](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/com/trendyol/).
88+
> ```kotlin
89+
> repositories {
90+
> maven("https://central.sonatype.com/repository/maven-snapshots")
91+
> }
92+
> ```
93+
8794
**2. Configure test system** (runs once before all tests)
8895
8996
```kotlin

docs/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,13 @@ Versions are available at [Releases](https://github.com/Trendyol/stove/releases)
8686

8787
!!! Tip
8888

89-
You can use SNAPSHOT versions for the latest features. You can add the following repository to your build file.
90-
SNAPSHOT versions released with the `1.0.0.{buildNumber}-SNAPSHOT` strategy.
89+
You can use SNAPSHOT versions for the latest features. As of 5th June 2025, Stove's snapshot packages are hosted on
90+
[Central Sonatype](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/com/trendyol/).
91+
SNAPSHOT versions are released with the `1.0.0.{buildNumber}-SNAPSHOT` strategy.
9192

9293
```kotlin
9394
repositories {
94-
maven {
95-
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
96-
}
95+
maven("https://central.sonatype.com/repository/maven-snapshots")
9796
}
9897
```
9998

0 commit comments

Comments
 (0)