File tree Expand file tree Collapse file tree 2 files changed +32
-7
lines changed
providers/go-feature-flag
src/test/java/dev/openfeature/contrib/providers/gofeatureflag/util Expand file tree Collapse file tree 2 files changed +32
-7
lines changed Original file line number Diff line number Diff line change 37
37
<version >2.19.0</version >
38
38
</dependency >
39
39
40
+ <dependency >
41
+ <groupId >com.fasterxml.jackson.core</groupId >
42
+ <artifactId >jackson-core</artifactId >
43
+ <version >2.19.0</version >
44
+ </dependency >
45
+
40
46
<dependency >
41
47
<groupId >com.fasterxml.jackson.core</groupId >
42
48
<artifactId >jackson-databind</artifactId >
43
49
<version >2.19.0</version >
44
50
</dependency >
45
51
46
52
<dependency >
47
- <groupId >com.squareup.okhttp3</groupId >
48
- <artifactId >mockwebserver</artifactId >
49
- <version >4.12.0</version >
50
- <scope >test</scope >
53
+ <groupId >com.fasterxml.jackson.core</groupId >
54
+ <artifactId >jackson-annotations</artifactId >
55
+ <version >2.19.0</version >
51
56
</dependency >
52
57
53
58
<dependency >
77
82
78
83
<dependency >
79
84
<groupId >com.dylibso.chicory</groupId >
80
- <artifactId >wasi </artifactId >
85
+ <artifactId >wasm </artifactId >
81
86
<version >1.2.1</version >
82
87
</dependency >
88
+
89
+ <dependency >
90
+ <groupId >com.squareup.okhttp3</groupId >
91
+ <artifactId >mockwebserver</artifactId >
92
+ <version >4.12.0</version >
93
+ <scope >test</scope >
94
+ </dependency >
95
+
96
+ <dependency >
97
+ <groupId >com.squareup.okhttp3</groupId >
98
+ <artifactId >okhttp</artifactId >
99
+ <version >4.12.0</version >
100
+ <scope >test</scope >
101
+ </dependency >
102
+
103
+ <dependency >
104
+ <groupId >com.squareup.okio</groupId >
105
+ <artifactId >okio-jvm</artifactId >
106
+ <version >3.12.0</version >
107
+ <scope >test</scope >
108
+ </dependency >
83
109
</dependencies >
84
110
<build >
85
111
<plugins >
Original file line number Diff line number Diff line change 11
11
import okhttp3 .mockwebserver .MockResponse ;
12
12
import okhttp3 .mockwebserver .RecordedRequest ;
13
13
import okhttp3 .mockwebserver .SocketPolicy ;
14
- import org .jetbrains .annotations .NotNull ;
15
14
16
15
public class GoffApiMock {
17
16
private static final String ofrepResponseDir = "ofrep_evaluate_responses/" ;
@@ -31,7 +30,7 @@ public class GoffApiMock {
31
30
private String lastRequestBody = null ;
32
31
33
32
public final Dispatcher dispatcher = new Dispatcher () {
34
- @ NotNull @ SneakyThrows
33
+ @ SneakyThrows
35
34
@ Override
36
35
public MockResponse dispatch (RecordedRequest request ) {
37
36
switch (mode ) {
You can’t perform that action at this time.
0 commit comments