Skip to content

Commit

Permalink
Build: Update Spark dependencies to provided
Browse files Browse the repository at this point in the history
So when published the pom.xml has the correct scope
  • Loading branch information
rozza committed May 18, 2016
1 parent edec510 commit 7b45275
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 @@ -32,13 +32,13 @@ object Dependencies {

// Libraries
val mongodbDriver = "org.mongodb" % "mongo-java-driver" % mongodbDriverVersion
val sparkCore = "org.apache.spark" %% "spark-core" % sparkVersion % "provided,test"
val sparkSql = "org.apache.spark" %% "spark-sql" % sparkVersion % "provided,test"
val slf4j = "org.slf4j" % "slf4j-api" % slf4jVersion % "provided,test"
val sparkCore = "org.apache.spark" %% "spark-core" % sparkVersion % "provided"
val sparkSql = "org.apache.spark" %% "spark-sql" % sparkVersion % "provided"
val slf4j = "org.slf4j" % "slf4j-api" % slf4jVersion % "provided"

// Test
val scalaTest = "org.scalatest" %% "scalatest" % scalaTestVersion % "test"
val scalaCheck = "org.scalacheck" %% "scalacheck" % scalaCheckVersion % "test"
val scalaCheck = "org.scalacheck" %% "scalacheck" % scalaCheckVersion % "test"
val scalaMock = "org.scalamock" %% "scalamock-scalatest-support" % scalaMockVersion % "test"
val junit = "junit" % "junit" % junitVersion % "test"
val junitInterface = "com.novocode" % "junit-interface" % junitInterfaceVersion % "test"
Expand Down

0 comments on commit 7b45275

Please sign in to comment.