Skip to content

Commit

Permalink
Modified sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulbhatia023 committed Aug 25, 2023
1 parent 02df326 commit d5e7373
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ val dataScalaxyTestUtilDependencies = Seq(
val sparkDependencies = Seq(
"org.apache.spark" %% "spark-core" % sparkVersion,
"org.apache.spark" %% "spark-sql" % sparkVersion
).map(_.cross(CrossVersion.for3Use2_13))
)
.map(_ excludeAll ("org.scala-lang.modules", "scala-xml"))
.map(_.cross(CrossVersion.for3Use2_13))

// ----- MODULE DEPENDENCIES ----- //

Expand All @@ -64,7 +66,7 @@ val rootDependencies =

val rootSettings = Seq(
Keys.scalacOptions ++= Seq("-Xmax-inlines", "50"),
libraryDependencies ++= rootDependencies.map(_ excludeAll ("org.scala-lang.modules", "scala-xml"))
libraryDependencies ++= rootDependencies
)

// ----- PROJECTS ----- //
Expand Down

0 comments on commit d5e7373

Please sign in to comment.