Skip to content

Commit cd9d76e

Browse files
Merge pull request #100 from futuredapp/maintenance/snapshots
Update documentation for snapshot builds
2 parents 5b5b933 + 6cb883e commit cd9d76e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,26 @@ dependencies {
2424
}
2525
```
2626

27+
### Snapshot installation
28+
29+
Snapshots are build from each commit to master branch.
30+
31+
Add new Maven repo in `settings.gradle.kts`:
32+
33+
```kotlin
34+
dependencyResolutionManagement {
35+
repositories {
36+
// ...
37+
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
38+
}
39+
}
40+
```
41+
42+
Snapshots are grouped based on major version of library, so for version 2.x, use:
43+
```kotlin
44+
implementation("app.futured.donut:donut-compose:2.X.X-SNAPSHOT")
45+
```
46+
2747
## Features
2848

2949
`DonutProgressView` is a configurable doughnut-like chart view capable of displaying multiple sections with assignable colors. It supports animations and features a gap at the top, which makes it look like a gauge (or tasty bitten-off donut - that's why the name).

0 commit comments

Comments
 (0)