Skip to content

Commit a69a544

Browse files
committed
Merge branch 'main' of github.com:launchdarkly/openfeature-java-server into main
2 parents 8a8dbfe + 7978f06 commit a69a544

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
## [0.1.0] - 2023-02-24
3+
Initial beta release of the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java.

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ This version of the LaunchDarkly provider works with Java 8 and above.
1818

1919
## Getting started
2020

21+
### Requisites
22+
23+
Your project will need compatible versions of the LaunchDarkly Server-Side SDK for Java as well as the OpenFeature java-sdk.
24+
25+
Example gradle dependencies:
26+
```groovy
27+
implementation group: 'com.launchdarkly', name: 'launchdarkly-java-server-sdk', version: '[6.0.0, 7.0.0)'
28+
implementation 'dev.openfeature:sdk:[1.2.0,2.0.0)'
29+
```
30+
2131
### Installation
2232

2333
First, install the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java as a dependency in your application using your application's dependency manager.
@@ -38,10 +48,9 @@ implementation group: 'com.launchdarkly', name: 'launchdarkly-openfeature-server
3848
### Usage
3949

4050
```java
41-
package org.example;
42-
4351
import dev.openfeature.sdk.OpenFeatureAPI;
4452
import com.launchdarkly.sdk.server.LDClient;
53+
import com.launchdarkly.openfeature.serverprovider.Provider;
4554

4655
public class Main {
4756
public static void main(String[] args) {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = com.launchdarkly
2-
version = 0.1.0-alpha.1
2+
version=0.1.0
33
signing.keyId=
44
signing.password=
55
signing.secretKeyRingFile=

0 commit comments

Comments
 (0)