File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed
Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,16 @@ radarRootProject {
2222subprojects {
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)
Original file line number Diff line number Diff line change 11@Suppress(" ConstPropertyName" , " MemberVisibilityCanBePrivate" )
22object 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"
You can’t perform that action at this time.
0 commit comments