Skip to content

Commit b901880

Browse files
authored
chore: fabric8 version to 6.9.2 + quarkus 3.5.0 and related fixes (#178)
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 10b8090 commit b901880

File tree

4 files changed

+13
-36
lines changed

4 files changed

+13
-36
lines changed

core/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,6 @@
9999
<artifactId>awaitility</artifactId>
100100
<scope>test</scope>
101101
</dependency>
102-
<dependency>
103-
<groupId>com.github.java-json-tools</groupId>
104-
<artifactId>json-patch</artifactId>
105-
</dependency>
106102
<dependency>
107103
<groupId>io.fabric8</groupId>
108104
<artifactId>crd-generator-apt</artifactId>

pom.xml

+3-30
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@
4040
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
4141

4242
<junit.version>5.10.0</junit.version>
43-
<fabric8-client.version>6.7.2</fabric8-client.version>
43+
<fabric8-client.version>6.9.2</fabric8-client.version>
4444
<slf4j.version>1.7.36</slf4j.version>
4545
<log4j.version>2.21.0</log4j.version>
4646
<mokito.version>5.6.0</mokito.version>
47-
<mokito.version>5.2.0</mokito.version>
48-
<dekorate.version>3.7.0</dekorate.version>
4947
<commons-lang3.version>3.12.0</commons-lang3.version>
5048
<auto-service.version>1.0.1</auto-service.version>
5149
<assertj.version>3.24.2</assertj.version>
@@ -61,11 +59,10 @@
6159
<git-commit-id-maven-plugin.version>7.0.0</git-commit-id-maven-plugin.version>
6260
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
6361
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
64-
<json-patch.version>1.13</json-patch.version>
6562
<maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version>
6663
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
6764
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
68-
<spring-boot-dependencies.version>3.1.5</spring-boot-dependencies.version>
65+
<spring-boot-dependencies.version>3.2.0</spring-boot-dependencies.version>
6966
</properties>
7067

7168
<modules>
@@ -120,31 +117,7 @@
120117
<artifactId>log4j-core</artifactId>
121118
<version>${log4j.version}</version>
122119
</dependency>
123-
<dependency>
124-
<groupId>com.github.java-json-tools</groupId>
125-
<artifactId>json-patch</artifactId>
126-
<version>${json-patch.version}</version>
127-
</dependency>
128-
<dependency>
129-
<groupId>io.dekorate</groupId>
130-
<artifactId>kubernetes-spring-starter</artifactId>
131-
<version>${dekorate.version}</version>
132-
</dependency>
133-
<dependency>
134-
<groupId>io.dekorate</groupId>
135-
<artifactId>certmanager-annotations</artifactId>
136-
<version>${dekorate.version}</version>
137-
</dependency>
138-
<dependency>
139-
<groupId>io.dekorate</groupId>
140-
<artifactId>kubernetes-annotations</artifactId>
141-
<version>${dekorate.version}</version>
142-
</dependency>
143-
<dependency>
144-
<groupId>io.dekorate</groupId>
145-
<artifactId>jib-annotations</artifactId>
146-
<version>${dekorate.version}</version>
147-
</dependency>
120+
148121
</dependencies>
149122
</dependencyManagement>
150123

samples/quarkus/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1717
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
1818
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
19-
<quarkus.platform.version>3.4.3</quarkus.platform.version>
19+
<quarkus.platform.version>3.5.0</quarkus.platform.version>
2020
<skipITs>true</skipITs>
2121
<surefire-plugin.version>3.2.1</surefire-plugin.version>
2222
</properties>

samples/spring-boot/pom.xml

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
<groupId>io.javaoperatorsdk.webhook.sample</groupId>
1212
<artifactId>spring-boot-sample</artifactId>
13-
<version>1.1.3-SNAPSHOT</version>
1413
<name>Kubernetes Webhooks Framework - Samples - Spring Boot</name>
1514

1615
<properties>
1716
<java.version>17</java.version>
1817
<jib-maven-plugin.version>3.4.0</jib-maven-plugin.version>
18+
<dekorate.version>4.1.0</dekorate.version>
1919
</properties>
2020

2121
<dependencyManagement>
@@ -84,14 +84,22 @@
8484
<dependency>
8585
<groupId>io.dekorate</groupId>
8686
<artifactId>kubernetes-spring-starter</artifactId>
87+
<version>${dekorate.version}</version>
8788
</dependency>
8889
<dependency>
8990
<groupId>io.dekorate</groupId>
9091
<artifactId>certmanager-annotations</artifactId>
92+
<version>${dekorate.version}</version>
93+
</dependency>
94+
<dependency>
95+
<groupId>io.dekorate</groupId>
96+
<artifactId>kubernetes-annotations</artifactId>
97+
<version>${dekorate.version}</version>
9198
</dependency>
9299
<dependency>
93100
<groupId>io.dekorate</groupId>
94101
<artifactId>jib-annotations</artifactId>
102+
<version>${dekorate.version}</version>
95103
</dependency>
96104
</dependencies>
97105

0 commit comments

Comments
 (0)