Skip to content

Commit

Permalink
fix: added missing dependency and installation instruction (#895)
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Schrottner <simon.schrottner@dynatrace.com>
  • Loading branch information
aepfli authored Jul 31, 2024
1 parent ebb6333 commit 6748d02
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tools/junit-openfeature/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

A JUnit5 extension to reduce boilerplate code for testing code which utilizes OpenFeature.

## Installation
<!-- x-release-please-start-version -->
```xml
<dependency>
<groupId>dev.openfeature.contrib.tools</groupId>
<artifactId>junitopenfeature</artifactId>
<version>0.0.0</version>
<scope>test</scope>
</dependency>
```
<!-- x-release-please-end-version -->

## Getting Started

We are supporting two different flavors for testing, a [simple](#simple-configuration) and an [extended](#extended-configuration) configuration.
Expand Down
6 changes: 6 additions & 0 deletions tools/junit-openfeature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.15.0</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand Down

0 comments on commit 6748d02

Please sign in to comment.