Skip to content

Commit dddd038

Browse files
authored
fix: use quarkus client istead of pure one (#35)
1 parent 413d340 commit dddd038

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

samples/quarkus/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@
4444
<groupId>io.javaoperatorsdk</groupId>
4545
<artifactId>admission-controller-framework-core</artifactId>
4646
<version>${project.version}</version>
47+
<exclusions>
48+
<exclusion>
49+
<groupId>io.fabric8</groupId>
50+
<artifactId>kubernetes-client</artifactId>
51+
</exclusion>
52+
</exclusions>
4753
</dependency>
4854
<dependency>
4955
<groupId>io.quarkus</groupId>
@@ -67,6 +73,12 @@
6773
<groupId>io.javaoperatorsdk.admissioncontroller.sample</groupId>
6874
<artifactId>sample-commons</artifactId>
6975
<version>${project.version}</version>
76+
<exclusions>
77+
<exclusion>
78+
<groupId>io.fabric8</groupId>
79+
<artifactId>kubernetes-client</artifactId>
80+
</exclusion>
81+
</exclusions>
7082
</dependency>
7183
</dependencies>
7284
<build>

0 commit comments

Comments
 (0)