-
Notifications
You must be signed in to change notification settings - Fork 224
[TOREE-557] Bump Spark 3.5 #224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,20 +26,24 @@ object Dependencies { | |
| val pekkoSlf4j = "org.apache.pekko" %% "pekko-slf4j" % pekkoVersion // Apache v2 | ||
| val pekkoTestkit = "org.apache.pekko" %% "pekko-testkit" % pekkoVersion // Apache v2 | ||
|
|
||
| val asmVersion = "9.9" | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Upgrade ASM libs used by |
||
| val asm = "org.ow2.asm" % "asm" % asmVersion // Apache v2 | ||
| val asmCommons = "org.ow2.asm" % "asm-commons" % asmVersion // Apache v2 | ||
| val asmUtil = "org.ow2.asm" % "asm-util" % asmVersion // Apache v2 | ||
| val clapper = "org.clapper" %% "classutil" % "1.5.1" // Apache v2, used for detecting plugins | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://github.com/bmc/classutil
|
||
|
|
||
| val commonsExec = "org.apache.commons" % "commons-exec" % "1.3" // Apache v2 | ||
|
|
||
| val config = "com.typesafe" % "config" % "1.4.3" // Apache v2 | ||
|
|
||
| val coursierVersion = "2.0.0" | ||
| val coursierVersion = "2.0.16" | ||
| val coursier = "io.get-coursier" %% "coursier" % coursierVersion // Apache v2 | ||
| val coursierCache = "io.get-coursier" %% "coursier-cache" % coursierVersion // Apache v2 | ||
|
|
||
| val ivy = "org.apache.ivy" % "ivy" % "2.5.1" // Apache v2 | ||
|
|
||
| // use the same jackson version in test than the one provided at runtime by Spark 3.4.x | ||
| val jacksonDatabind = "com.fasterxml.jackson.core" % "jackson-databind" % "2.14.2" // Apache v2 | ||
| // use the same jackson version in test than the one provided at runtime by Spark 3.5.x | ||
| val jacksonDatabind = "com.fasterxml.jackson.core" % "jackson-databind" % "2.15.2" // Apache v2 | ||
|
|
||
| val jeroMq = "org.zeromq" % "jeromq" % "0.5.3" // MPL v2 | ||
|
|
||
|
|
@@ -57,7 +61,7 @@ object Dependencies { | |
| val scalaTestMockito = "org.scalatestplus" %% "mockito-4-11" % "3.2.16.0" // Apache v2 | ||
| val mockitoInline = "org.mockito" % "mockito-inline" % "4.11.0" // MIT | ||
|
|
||
| val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.6" // MIT | ||
| val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.7" // MIT | ||
|
|
||
| val sparkVersion = settingKey[String]("Version of Apache Spark to use in Toree") // defined in root build | ||
| val sparkCore = Def.setting{ "org.apache.spark" %% "spark-core" % sparkVersion.value } // Apache v2 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some modern version libs, like Jackson, use multi release jars, which main classes are built against Java 8, but ship optional classes compiled with higher JDK version, we must use newer ASM lib to make it work.
see also bmc/classutil#45