Skip to content

Commit 883d3d5

Browse files
committed
Apply security upgrades October 2025 platform upgrade
1 parent 793193e commit 883d3d5

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ configurations {
6464

6565
ext {
6666
apacheCommonsIoVersion = '2.5'
67-
apacheCommonsLangVersion = '3.6'
67+
apacheCommonsLangVersion = '3.18.0'
6868
jerseyVersion = '2.31'
6969
jerseymediaVersion = '2.30.1'
7070
junitVersion = '4.12'
@@ -75,6 +75,15 @@ ext {
7575
jacksonVersion = '2.16.1'
7676
}
7777

78+
configurations.configureEach {
79+
resolutionStrategy {
80+
/* The entries in the block below are added here to force the version of
81+
* transitive dependencies and mitigate reported vulnerabilities */
82+
force("org.apache.commons:commons-lang3:$apacheCommonsLangVersion")
83+
}
84+
}
85+
86+
7887
dependencies {
7988
implementation "ch.qos.logback:logback-classic:$logbackVersion"
8089
runtimeOnly "org.glassfish.jersey.media:jersey-media-json-jackson:$jerseymediaVersion"
@@ -199,6 +208,8 @@ tasks.register('copyConf', Copy) {
199208
}
200209
}
201210

211+
212+
202213
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {
203214
kotlinOptions {
204215
jvmTarget = "17"

0 commit comments

Comments
 (0)