Skip to content

Commit 6748d02

Browse files
authored
fix: added missing dependency and installation instruction (#895)
Signed-off-by: Simon Schrottner <[email protected]>
1 parent ebb6333 commit 6748d02

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Diff for: tools/junit-openfeature/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

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

5+
## Installation
6+
<!-- x-release-please-start-version -->
7+
```xml
8+
<dependency>
9+
<groupId>dev.openfeature.contrib.tools</groupId>
10+
<artifactId>junitopenfeature</artifactId>
11+
<version>0.0.0</version>
12+
<scope>test</scope>
13+
</dependency>
14+
```
15+
<!-- x-release-please-end-version -->
16+
517
## Getting Started
618

719
We are supporting two different flavors for testing, a [simple](#simple-configuration) and an [extended](#extended-configuration) configuration.

Diff for: tools/junit-openfeature/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333
<scope>provided</scope>
3434
</dependency>
3535

36+
<dependency>
37+
<groupId>org.apache.commons</groupId>
38+
<artifactId>commons-lang3</artifactId>
39+
<version>3.15.0</version>
40+
</dependency>
41+
3642
<dependency>
3743
<groupId>org.junit.jupiter</groupId>
3844
<artifactId>junit-jupiter-api</artifactId>

0 commit comments

Comments
 (0)