File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
spring-cloud-kubernetes-fabric8-config Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 11
11
12
12
<artifactId >spring-cloud-kubernetes-fabric8-config</artifactId >
13
13
<name >Spring Cloud Kubernetes :: Fabric8 Config</name >
14
+ <properties >
15
+ <!-- We are overriding the version of Jackson here because Fabric8 is
16
+ is not compatible with Jackson 2.19.0 which used in Spring Boot 3.5.x
17
+ We cannot use Jackson 2.19.0 until we can upgrade to Fabric8
18
+ 7.3.0.
19
+ See https://github.com/fabric8io/kubernetes-client/issues/7036
20
+ See https://github.com/spring-projects/spring-boot/commit/e1ff4fbaf99bfcfdf0828ed07664b208a3ca6157
21
+ -->
22
+ <jackson .version>2.18.4</jackson .version>
23
+ </properties >
14
24
15
25
<dependencies >
16
26
<dependency >
76
86
<dependency >
77
87
<groupId >com.fasterxml.jackson.core</groupId >
78
88
<artifactId >jackson-databind</artifactId >
89
+ <version >${jackson.version} </version >
79
90
<scope >test</scope >
80
91
</dependency >
81
92
<dependency >
82
93
<groupId >com.fasterxml.jackson.core</groupId >
83
94
<artifactId >jackson-core</artifactId >
95
+ <version >${jackson.version} </version >
84
96
<scope >test</scope >
85
97
</dependency >
86
98
<dependency >
87
99
<groupId >com.fasterxml.jackson.core</groupId >
88
100
<artifactId >jackson-annotations</artifactId >
101
+ <version >${jackson.version} </version >
89
102
<scope >test</scope >
90
103
</dependency >
91
104
<dependency >
You can’t perform that action at this time.
0 commit comments