Skip to content

Commit f55036b

Browse files
committed
Apply security upgrades October 2025 platform upgrade
1 parent 1ed4ace commit f55036b

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ radarRootProject {
2222
subprojects {
2323
apply(plugin = "org.radarbase.radar-kotlin")
2424

25+
configurations.all {
26+
resolutionStrategy {
27+
/* The entries in the block below are added here to force the version of
28+
* transitive dependencies and mitigate reported vulnerabilities */
29+
force(
30+
"org.apache.commons:commons-lang3:3.18.0",
31+
)
32+
}
33+
}
34+
2535
radarKotlin {
2636
javaVersion.set(Versions.java)
2737
kotlinVersion.set(Versions.kotlin)

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
@Suppress("ConstPropertyName", "MemberVisibilityCanBePrivate")
22
object Versions {
3-
const val project = "0.7.0"
3+
const val project = "0.6.3"
44

55
const val java = 17
66
const val kotlin = "1.9.22"
77
const val wrapper = "8.9"
88

9-
const val radarCommons = "1.2.2"
9+
const val radarCommons = "1.2.4"
1010
const val confluent = "7.8.1"
1111
const val kafka = "$confluent-ce"
1212
const val avro = "1.12.0"
1313

14-
const val managementPortal = "2.0.0"
14+
const val managementPortal = "2.1.12"
1515

1616
// From image
17-
const val jackson = "2.17.0"
17+
const val jackson = "2.17.3"
1818

1919
const val log4j2 = "2.23.1"
2020
const val slf4j = "2.0.13"
@@ -24,7 +24,7 @@ object Versions {
2424
const val okhttp = "4.12.0"
2525

2626
const val firebaseAdmin = "9.4.0"
27-
const val radarSchemas = "0.8.11"
27+
const val radarSchemas = "0.8.14"
2828
const val ktor = "2.3.10"
2929

3030
const val junit = "5.10.2"

0 commit comments

Comments
 (0)