我正在尝试按照说明安装 sbt-assembly,以便制作一个可以在未安装 scala 的计算机上运行的独立 jar。
到目前为止,这些是我采取的步骤。
我创建了一个 plugins.sbt 文件:
$ cat sbt/project/plugins.sbt
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.7.2")
我在 build.sbt 文件的开头添加了以下内容:
$ head -n3 sbt/build.sbt
import AssemblyKeys._ // put this at the top of the file
seq(assemblySettings: _*)
但是当我运行 sbt 时,出现以下错误:
sbt/build.sbt:1: error: not found: value AssemblyKeys
import AssemblyKeys._