Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.72 KB

CONTRIBUTING.md

File metadata and controls

41 lines (27 loc) · 1.72 KB

Contributing to the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java

LaunchDarkly has published an SDK contributor's guide that provides a detailed explanation of how our SDKs work. See below for additional information on how to contribute to this SDK.

Submitting bug reports and feature requests

The LaunchDarkly SDK team monitors the issue tracker in the provider repository. Bug reports and feature requests specific to this provider should be filed in this issue tracker. The SDK team will respond to all newly filed issues within two business days.

Submitting pull requests

We encourage pull requests and other contributions from the community. Before submitting pull requests, ensure that all temporary or unintended code is removed. Don't worry about adding reviewers to the pull request; the LaunchDarkly SDK team will add themselves. The SDK team will acknowledge all pull requests within two business days.

Build instructions

Prerequisites

The provider builds with Gradle and should be built against Java 8.

Building

To build the provider without running any tests:

./gradlew jar

If you wish to clean your working directory between builds, you can clean it by running:

./gradlew clean

If you wish to use your generated provider artifact by another Maven/Gradle project, you will likely want to publish the artifact to your local Maven repository so that your other project can access it.

./gradlew publishToMavenLocal -PskipSigning=true

Testing

To build the provider and run all unit tests:

./gradlew test