Skip to content

Commit 265ebd4

Browse files
committed
Document how to get snapshot builds
1 parent cd3302a commit 265ebd4

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class MyClass {
5656

5757
### Add it to your build
5858

59-
Maven:
59+
#### Maven
6060
```xml
6161
<dependency>
6262
<groupId>dev.openfeature</groupId>
@@ -65,10 +65,25 @@ Maven:
6565
</dependency>
6666
```
6767

68-
Gradle:
68+
If you would like snapshot builds, this is the relevant repository information:
69+
70+
```xml
71+
<repositories>
72+
<repository>
73+
<snapshots>
74+
<enabled>true</enabled>
75+
</snapshots>
76+
<id>sonartype</id>
77+
<name>Sonartype Repository</name>
78+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
79+
</repository>
80+
</repositories>
81+
```
82+
83+
#### Gradle
6984
```groovy
7085
dependencies {
71-
implementation 'dev.openfeature:javasdk:0.0.1-SNAPSHOT'
86+
implementation 'dev.openfeature:javasdk:0.0.3-SNAPSHOT'
7287
}
7388
```
7489

0 commit comments

Comments
 (0)