Skip to content

Commit 00bb89c

Browse files
committed
chore(deps): override sundrio version
There's currently an issue with the CRD generator in 5.3.1 that might cause an infinite loop when using the sundrio code generator in addition to the CRD generator (with uses the sundrio code generator internally). A newer version of the sundrio-codegen dependency allows to bypass this issue, which is why we need to override that dependency by defining it in the dependencyManagement section before the kubernetes-client-bom.
1 parent 4e0bc0a commit 00bb89c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<surefire.version>3.0.0-M5</surefire.version>
4040
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4141
<fabric8-client.version>5.3.1</fabric8-client.version>
42+
<sundrio.version>0.30.6</sundrio.version>
4243
<slf4j.version>1.7.30</slf4j.version>
4344
</properties>
4445

@@ -53,6 +54,12 @@
5354

5455
<dependencyManagement>
5556
<dependencies>
57+
<dependency>
58+
<groupId>io.sundr</groupId>
59+
<artifactId>sundr-codegen</artifactId>
60+
<version>${sundrio.version}</version>
61+
<scope>provided</scope>
62+
</dependency>
5663
<dependency>
5764
<groupId>io.fabric8</groupId>
5865
<artifactId>kubernetes-client-bom</artifactId>

0 commit comments

Comments
 (0)