File tree Expand file tree Collapse file tree 6 files changed +6
-0
lines changed Expand file tree Collapse file tree 6 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ object Dependencies {
2020 inline  val  kotlinTest get() =  " org.jetbrains.kotlin:kotlin-test:${Versions .kotlin} " 
2121 inline  val  kotlinScriptingCommon get() =  " org.jetbrains.kotlin:kotlin-scripting-common" 
2222 inline  val  kotlinScriptingJvm get() =  " org.jetbrains.kotlin:kotlin-scripting-jvm" 
23+  inline  val  jacksonDatabind get() =  " com.fasterxml.jackson.core:jackson-databind:${Versions .jacksonDatabind} " 
2324}
2425
2526
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ object Versions {
2121 const  val  hadoop =  " 3.3.1" 
2222 const  val  kotlinxHtml =  " 0.7.5" 
2323 const  val  klaxon =  " 5.5" 
24+  const  val  jacksonDatabind =  " 2.13.4.2" 
2425
2526 inline  val  versionMap
2627 get() =  mapOf (
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ dependencies {
2727 )
2828
2929 implementation(
30+  jacksonDatabind, //  Spark 3.3.1 https://github.com/FasterXML/jackson-bom/issues/52
3031 sparkSql,
3132 )
3233 }
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ dependencies {
2323 with (Dependencies ) {
2424 implementation(
2525 sparkSql,
26+  jacksonDatabind, //  Spark 3.3.1 https://github.com/FasterXML/jackson-bom/issues/52
2627 sparkMl,
2728 sparkStreaming,
2829 sparkStreamingKafka,
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ dependencies {
5252 )
5353
5454 implementation(
55+  jacksonDatabind, //  Spark 3.3.1 https://github.com/FasterXML/jackson-bom/issues/52
5556 kotlinStdLib,
5657 )
5758
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ dependencies {
3838 implementation(
3939 kotlinStdLib,
4040 reflect,
41+  jacksonDatabind, //  Spark 3.3.1 https://github.com/FasterXML/jackson-bom/issues/52
4142 sparkSql,
4243 sparkStreaming,
4344 hadoopClient,
                         You can’t perform that action at this time. 
           
                  
0 commit comments