Skip to content

Commit dd9e6c2

Browse files
committed
Apply security upgrades October 2025 platform upgrade
1 parent 6465c77 commit dd9e6c2

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,17 @@ configurations["integrationTestRuntimeOnly"].extendsFrom(
5353
configurations.testRuntimeOnly.get(),
5454
)
5555

56+
configurations.all {
57+
resolutionStrategy {
58+
/* The entries in the block below are added here to force the version of
59+
* transitive dependencies and mitigate reported vulnerabilities */
60+
force(
61+
"com.fasterxml.jackson.core:jackson-databind:${Versions.jackson}",
62+
"org.apache.commons:commons-lang3:3.18.0"
63+
)
64+
}
65+
}
66+
5667
dependencies {
5768
api("org.apache.avro:avro:${Versions.avro}")
5869
runtimeOnly("org.xerial.snappy:snappy-java:${Versions.snappy}")

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@ object Versions {
55
const val java = 17
66
const val dockerCompose = "0.17.5"
77

8-
const val radarCommons = "1.1.3"
9-
const val radarSchemas = "0.8.11"
10-
const val jackson = "2.16.1"
8+
const val radarCommons = "1.2.4"
9+
const val radarSchemas = "0.8.14"
10+
const val jackson = "2.17.3"
1111
const val slf4j = "2.0.9"
1212
const val log4j2 = "2.21.0"
1313
const val junit = "5.10.0"
14-
const val avro = "1.11.4"
14+
const val avro = "1.12.0"
1515

1616
const val mockitoKotlin = "5.1.0"
1717
const val hamcrest = "2.2"
1818

1919
const val wrapper = "8.13"
2020

21-
const val managementPortal = "2.1.5"
21+
const val managementPortal = "2.1.14"
2222
const val coroutines = "1.7.3"
2323
const val snappy = "1.1.10.5"
2424
const val jCommander = "1.82"
2525
const val almworks = "1.1.2"
2626
const val minio = "8.5.10"
2727
const val guava = "31.1-jre"
28-
const val opencsv = "5.8"
28+
const val opencsv = "5.12.0"
2929
const val okhttp = "4.12.0"
3030
const val jedis = "jedis-3.6.2"
3131
const val azureStorage = "12.25.1"
3232
const val netty = "4.1.100.Final"
3333
const val snakeYaml = "2.2"
34-
const val apacheCommonsText = "1.10.0"
34+
const val apacheCommonsText = "1.14.0"
3535
const val projectReactorNetty = "1.1.27"
3636
}

0 commit comments

Comments
 (0)