Skip to content

Commit fb0918b

Browse files
committed
fix: an HTTP client implementation is required
Signed-off-by: Chris Laprun <[email protected]>
1 parent a1c532a commit fb0918b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Diff for: operator-framework/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
<dependency>
2121
<groupId>io.fabric8</groupId>
2222
<artifactId>kubernetes-httpclient-${fabric8-httpclient-impl.name}</artifactId>
23-
<scope>provided</scope>
2423
</dependency>
2524
<dependency>
2625
<groupId>org.apache.commons</groupId>

Diff for: sample-operators/tomcat-operator/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@
3737
<dependency>
3838
<groupId>io.javaoperatorsdk</groupId>
3939
<artifactId>operator-framework</artifactId>
40+
<exclusions>
41+
<exclusion>
42+
<groupId>io.fabric8</groupId>
43+
<artifactId>kubernetes-httpclient-okhttp</artifactId>
44+
</exclusion>
45+
</exclusions>
4046
</dependency>
4147
<dependency>
4248
<groupId>io.fabric8</groupId>

0 commit comments

Comments
 (0)