Skip to content

Commit a9aa4bf

Browse files
authored
Bump dependencies - fabric8, javadoc, jackson (#204)
## Description Bumps the dependencies group with 3 updates: [io.fabric8:kubernetes-client-bom-with-deps](https://github.com/fabric8io/kubernetes-client), [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) and [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin). Updates io.fabric8:kubernetes-client-bom-with-deps from 6.13.4 to 7.0.0 ## Type of Change * Update (Update version or update existing automation) ## Checklist - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit/integration tests pass locally with my changes --------- Signed-off-by: Lukas Kral <[email protected]>
1 parent cb9cc39 commit a9aa4bf

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<maven.compiler.target>17</maven.compiler.target>
7474
<maven.compiler.release>17</maven.compiler.release>
7575

76-
<fabric8.version>6.13.4</fabric8.version>
76+
<fabric8.version>7.0.0</fabric8.version>
7777
<log4j.version>2.24.2</log4j.version>
7878
<slf4j.version>2.0.16</slf4j.version>
7979

@@ -92,13 +92,13 @@
9292
<maven.deploy.plugin.version>3.1.3</maven.deploy.plugin.version>
9393
<maven.gpg.version>3.2.7</maven.gpg.version>
9494
<sonatype.nexus.central>0.6.0</sonatype.nexus.central>
95-
<maven.javadoc.version>3.11.1</maven.javadoc.version>
95+
<maven.javadoc.version>3.11.2</maven.javadoc.version>
9696
<maven.assembly.version>3.7.1</maven.assembly.version>
9797
<maven.plugin.plugin.version>3.9.0</maven.plugin.plugin.version>
9898
<junit.jupiter.version>5.11.3</junit.jupiter.version>
9999
<junit.platform.version>1.11.3</junit.platform.version>
100100
<maven.surefire.version>3.5.2</maven.surefire.version>
101-
<jackson-dataformat-yaml.version>2.18.1</jackson-dataformat-yaml.version>
101+
<jackson-dataformat-yaml.version>2.18.2</jackson-dataformat-yaml.version>
102102
<org.eclipse.sisu.version>0.9.0.M3</org.eclipse.sisu.version>
103103
<bouncycastle.version>1.79</bouncycastle.version>
104104

test-frame-common/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
</developers>
6262

6363
<dependencies>
64+
<dependency>
65+
<groupId>io.fabric8</groupId>
66+
<artifactId>kubernetes-client</artifactId>
67+
</dependency>
6468
<dependency>
6569
<groupId>io.fabric8</groupId>
6670
<artifactId>kubernetes-client-api</artifactId>
@@ -157,6 +161,8 @@
157161
<ignoredUnusedDeclaredDependencies>
158162
<!-- Needed for logging in tests used by test-frame (uses SLF4J) -->
159163
<ignoredUnusedDeclaredDependency>org.apache.logging.log4j:log4j-slf4j2-impl</ignoredUnusedDeclaredDependency>
164+
<!-- Needed for importing KubernetesClientImpl -->
165+
<ignoredUnusedDeclaredDependency>io.fabric8:kubernetes-client</ignoredUnusedDeclaredDependency>
160166
</ignoredUnusedDeclaredDependencies>
161167
</configuration>
162168
</execution>

test-frame-test-examples/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@
4141
<groupId>io.fabric8</groupId>
4242
<artifactId>openshift-client</artifactId>
4343
</dependency>
44-
<dependency>
45-
<groupId>io.fabric8</groupId>
46-
<artifactId>kubernetes-model</artifactId>
47-
</dependency>
4844
<dependency>
4945
<groupId>io.fabric8</groupId>
5046
<artifactId>generator-annotations</artifactId>

0 commit comments

Comments
 (0)