File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed
spring-cloud-kubernetes-fabric8-config
spring-cloud-kubernetes-fabric8-loadbalancer Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 80
80
</maven-checkstyle-plugin .failsOnViolation>
81
81
<maven-checkstyle-plugin .includeTestSourceDirectory>true
82
82
</maven-checkstyle-plugin .includeTestSourceDirectory>
83
+ <!-- We are overriding the version of Jackson here because Fabric8 is
84
+ is not compatible with Jackson 2.19.0 which used in Spring Boot 3.5.x
85
+ We cannot use Jackson 2.19.0 until we can upgrade to Fabric8
86
+ 7.3.0.
87
+ See https://github.com/fabric8io/kubernetes-client/issues/7036
88
+ See https://github.com/spring-projects/spring-boot/commit/e1ff4fbaf99bfcfdf0828ed07664b208a3ca6157
89
+ -->
90
+ <jackson .version>2.18.4</jackson .version>
83
91
</properties >
84
92
85
93
<modules >
Original file line number Diff line number Diff line change 76
76
<dependency >
77
77
<groupId >com.fasterxml.jackson.core</groupId >
78
78
<artifactId >jackson-databind</artifactId >
79
+ <version >${jackson.version} </version >
79
80
<scope >test</scope >
80
81
</dependency >
81
82
<dependency >
82
83
<groupId >com.fasterxml.jackson.core</groupId >
83
84
<artifactId >jackson-core</artifactId >
85
+ <version >${jackson.version} </version >
84
86
<scope >test</scope >
85
87
</dependency >
86
88
<dependency >
87
89
<groupId >com.fasterxml.jackson.core</groupId >
88
90
<artifactId >jackson-annotations</artifactId >
91
+ <version >${jackson.version} </version >
89
92
<scope >test</scope >
90
93
</dependency >
91
94
<dependency >
Original file line number Diff line number Diff line change 74
74
<artifactId >spring-cloud-kubernetes-test-support</artifactId >
75
75
<scope >test</scope >
76
76
</dependency >
77
+ <dependency >
78
+ <groupId >com.fasterxml.jackson.core</groupId >
79
+ <artifactId >jackson-databind</artifactId >
80
+ <version >${jackson.version} </version >
81
+ <scope >test</scope >
82
+ </dependency >
83
+ <dependency >
84
+ <groupId >com.fasterxml.jackson.core</groupId >
85
+ <artifactId >jackson-core</artifactId >
86
+ <version >${jackson.version} </version >
87
+ <scope >test</scope >
88
+ </dependency >
89
+ <dependency >
90
+ <groupId >com.fasterxml.jackson.core</groupId >
91
+ <artifactId >jackson-annotations</artifactId >
92
+ <version >${jackson.version} </version >
93
+ <scope >test</scope >
94
+ </dependency >
77
95
</dependencies >
78
96
</project >
You can’t perform that action at this time.
0 commit comments