Skip to content

Commit d3fc897

Browse files
authored
fix: clean up dependencies (#2524)
* fix: clean up dependencies Signed-off-by: Chris Laprun <[email protected]> * fix: an HTTP client implementation is required Signed-off-by: Chris Laprun <[email protected]> --------- Signed-off-by: Chris Laprun <[email protected]>
1 parent e862d05 commit d3fc897

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

Diff for: operator-framework-core/src/test/java/io/javaoperatorsdk/operator/processing/dependent/workflow/WorkflowTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414
import io.javaoperatorsdk.operator.sample.simple.TestCustomResource;
1515

1616
import static org.assertj.core.api.Assertions.assertThat;
17-
import static org.junit.Assert.assertThrows;
18-
import static org.junit.jupiter.api.Assertions.assertFalse;
19-
import static org.junit.jupiter.api.Assertions.assertTrue;
17+
import static org.junit.jupiter.api.Assertions.*;
2018
import static org.mockito.Mockito.mock;
2119
import static org.mockito.Mockito.withSettings;
2220

Diff for: pom.xml

-20
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
<awaitility.version>4.2.0</awaitility.version>
5656
<spring-boot.version>2.7.3</spring-boot.version>
5757
<micrometer-core.version>1.13.3</micrometer-core.version>
58-
<okhttp.version>4.12.0</okhttp.version>
5958
<caffeine.version>3.1.8</caffeine.version>
6059
<jenvtest.version>0.9.6</jenvtest.version>
6160
<mustache.version>0.9.11</mustache.version>
@@ -195,25 +194,6 @@
195194
<artifactId>operator-framework</artifactId>
196195
<version>${project.version}</version>
197196
</dependency>
198-
<!--
199-
regarding the okhttp explicit version
200-
see https://github.com/fabric8io/kubernetes-client/issues/4290
201-
-->
202-
<dependency>
203-
<groupId>com.squareup.okhttp3</groupId>
204-
<artifactId>okhttp</artifactId>
205-
<version>${okhttp.version}</version>
206-
</dependency>
207-
<dependency>
208-
<groupId>com.squareup.okhttp3</groupId>
209-
<artifactId>logging-interceptor</artifactId>
210-
<version>${okhttp.version}</version>
211-
</dependency>
212-
<dependency>
213-
<groupId>com.squareup.okhttp3</groupId>
214-
<artifactId>mockwebserver</artifactId>
215-
<version>${okhttp.version}</version>
216-
</dependency>
217197
<dependency>
218198
<groupId>com.github.ben-manes.caffeine</groupId>
219199
<artifactId>caffeine</artifactId>

0 commit comments

Comments
 (0)