Skip to content

Commit 11f9041

Browse files
authored
Merge branch 'master' into CCD-5339_PI33_Helm_chart_upgrade_chart-java
2 parents c5337c4 + e4e0372 commit 11f9041

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

build.gradle

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '2.7.12'
3+
springBootVersion = '2.7.18'
44
}
55
dependencies {
66
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
@@ -55,7 +55,7 @@ ext {
5555
reformLogging= '6.0.1'
5656
appInsightsVersion = '2.4.1'
5757
restAssuredVersion = '4.3.0!!'
58-
groovyVersion = '3.0.17!!'
58+
groovyVersion = '3.0.19!!'
5959
tomcatVersion = '9.0.82'
6060
feignJackson = '11.6'
6161
beftaFwVersion = '8.8.5'
@@ -104,14 +104,17 @@ allprojects {
104104
// Global constraints
105105
dependencies {
106106

107-
implementation('org.springframework.cloud:spring-cloud-starter-openfeign'){
108-
version {
109-
strictly '4.0.3'
107+
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
108+
constraints {
109+
implementation('org.springframework.cloud:spring-cloud-starter-openfeign') {
110+
version{
111+
strictly '4.0.3'
112+
}
110113
}
111-
}
112-
implementation('org.springframework.cloud:spring-cloud-starter'){
113-
version {
114-
strictly '3.1.8'
114+
implementation('org.springframework.cloud:spring-cloud-starter') {
115+
version{
116+
strictly '3.1.8'
117+
}
115118
}
116119
}
117120

@@ -170,8 +173,10 @@ allprojects {
170173
details.useVersion '32.1.3-jre'
171174
}
172175
}
176+
173177
}
174178
}
179+
175180
}
176181

177182
java {
@@ -281,8 +286,7 @@ subprojects { subproject ->
281286

282287
// CVE-2021-29425
283288
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
284-
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap', version: '3.1.7'
285-
implementation "org.springframework.cloud:spring-cloud-starter-bootstrap"
289+
testImplementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap', version: '3.1.8'
286290
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-openfeign', version: '3.1.9'
287291

288292
// To avoid compiler warnings about @API annotations in JUnit5 code.

dependency-check-suppressions.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
CVE-2022-45688 refer https://tools.hmcts.net/jira/browse/CCD-4373
77
CVE-2023-5072 refer [Ticket]
88
CVE-2023-6378 refer [Ticket]
9-
CVE-2023-34055 refer [Ticket]
109
CVE-2023-34042 refer [Ticket]
1110
CVE-2023-46589 refer [Ticket]
1211
CVE-2024-26308 refer [Ticket]
@@ -16,7 +15,6 @@
1615
<cve>CVE-2022-45688</cve>
1716
<cve>CVE-2023-5072</cve>
1817
<cve>CVE-2023-6378</cve>
19-
<cve>CVE-2023-34055</cve>
2018
<cve>CVE-2023-34042</cve>
2119
<cve>CVE-2023-46589</cve>
2220
<cve>CVE-2024-26308</cve>

0 commit comments

Comments
 (0)