我的项目构建时,使用 scalaVersion 为 2.11.8。当我切换到 scalaVersion 2.12.1 时,出现找不到符号assembly
的错误。https://github.com/sbt/sbt-assembly还不能与 scala 2.12.1 一起使用吗mainClass in assembly := ...
?
所以
scalaVersion in ThisBuild := "2.11.8",
有效,但是
scalaVersion in ThisBuild := "2.12.1",
不起作用。