I\'m trying to build a Scala jar file to run it in spark. I\'m following this tutorial. when trying to build jar file using sbt as here, i\'m facing with following error
I had the same issue. Looks like that some bugs are in different versions/compilations/etc.
For me the following build.sbt worked fine
name := "My Project" version := "1.0" scalaVersion := "2.11.8" libraryDependencies += "org.apache.spark" %% "spark-sql" % "2.3.2"
Hope it helps