Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
borice committed Sep 25, 2024
1 parent d2546b0 commit a371eb8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ object Dependencies {

def spark(version: String): Seq[Def.Setting[Seq[ModuleID]]] = Seq(
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % version % Provided
exclude("org.slf4j", "slf4j-log4j12"),
"org.apache.spark" %% "spark-core" % version % Provided,
"org.apache.spark" %% "spark-sql" % version % Provided
exclude("org.slf4j", "slf4j-log4j12")
)
)

def spark_dev(version: String): Seq[Def.Setting[Seq[ModuleID]]] = Seq(
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % version
exclude("org.slf4j", "slf4j-log4j12"),
exclude("org.slf4j", "slf4j-log4j12")
exclude("org.apache.logging.log4j", "log4j-slf4j2-impl"),
"org.apache.spark" %% "spark-sql" % version
exclude("org.slf4j", "slf4j-log4j12")
exclude("org.apache.logging.log4j", "log4j-slf4j2-impl")
)
)

Expand Down

0 comments on commit a371eb8

Please sign in to comment.