My project build, when using scalaVersion to be 2.11.8. When I switch to scalaVersion 2.12.1, I get the error that the symbol assembly
in mainClass in assembly := ...
cannot be found. Is https://github.com/sbt/sbt-assembly not working with scala 2.12.1 yet?
So
scalaVersion in ThisBuild := "2.11.8",
works, but
scalaVersion in ThisBuild := "2.12.1",
does not work.
build.sbt
file? – jkinkeadaddSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.3")
to the fileproject/assembly.sbt
– Make42build.sbt
file (or you were missing declaring the plugin entirely before your last comment). – jkinkead