Skip to content

Commit

Permalink
-- spark cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
djnzx committed Sep 12, 2023
1 parent 2ab1890 commit c66d29a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
12 changes: 2 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -273,18 +273,10 @@ lazy val plain3 = (project in file("plain3"))
lazy val sparkx = (project in file("sparkx"))
.settings(
Settings.common,
scalaVersion := v.vScala213,
scalacOptions -= ScalacOpts.macroAnnotations,
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "3.3.2",
"org.apache.spark" %% "spark-sql" % "3.3.2"
"org.apache.spark" %% "spark-core" % "3.4.1",
"org.apache.spark" %% "spark-sql" % "3.4.1"
),
// it doesn't really fix the issue, but to avoid any sbt failures
// TODO: remove or possibly move to another repo later
dependencyOverrides ++= Seq(
"io.netty" % "netty-all" % "4.1.90.Final",
"org.scala-lang.modules" %% "scala-xml" % "2.1.0"
)
)

lazy val typesafe = (project in file("typesafe"))
Expand Down
2 changes: 1 addition & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Settings {
val common: Seq[Setting[?]] = Seq(
scalaVersion := Versions.vScala213,
organization := "alexr",
version := "2023.08.28",
version := "2023.09.12",
javacOptions ++= CompilerOptions.javacOptions,
scalacOptions ++= CompilerOptions.scalacOptions,
scalacOptions -= ScalacOpts.warningsAsFatals,
Expand Down
File renamed without changes.

0 comments on commit c66d29a

Please sign in to comment.