We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am not able to use Scala 2.11 in my test project when i am using this plugin. Below is my build.sbt :
name := "ch19-spark-2" version := "1.0" scalaVersion := "2.11.8" crossScalaVersions := Seq("2.11.8", "2.10.6") sbtPlugin := true val sparkVersion = "2.2.0" libraryDependencies ++= Seq( "org.apache.spark" %% "spark-core" % sparkVersion )
my plugin.sbt looks like :
addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "0.16.0")
The error that i keep getting is : Conflicting cross-version suffixes in: org.json4s:json4s-ast, org.json4s:json4s-core
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am not able to use Scala 2.11 in my test project when i am using this plugin. Below is my build.sbt :
name := "ch19-spark-2"
version := "1.0"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.11.8", "2.10.6")
sbtPlugin := true
val sparkVersion = "2.2.0"
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % sparkVersion
)
my plugin.sbt looks like :
addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "0.16.0")
The error that i keep getting is :
Conflicting cross-version suffixes in: org.json4s:json4s-ast, org.json4s:json4s-core
The text was updated successfully, but these errors were encountered: