添加 sbt-native-packager 后出现 sbt 错误
sbt error after adding sbt-native-packager
我使用类型安全激活器创建了一个简单的项目:
activator new helloapp hello-play-scala
如果我 运行 sbt 命令在 helloapp 目录中运行
现在我编辑 project/plugins.sbt 并添加以下行:
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.3")
如果我在 helloapp 目录中 运行 sbt 命令,我会收到以下错误:
[info] Loading project definition from /home/blr/kubeplayground/gultenetwork/project
[error] java.lang.NoClassDefFoundError: sbt/AutoPlugin
[error] Use 'last' for the full log.
Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore?
我无法理解为什么会这样。
此版本的 sbt-native-packager
是一个自动插件,它们仅在 SBT 0.13.5 中添加。当前SBT版本为0.13.11,更新到。
我使用类型安全激活器创建了一个简单的项目:
activator new helloapp hello-play-scala
如果我 运行 sbt 命令在 helloapp 目录中运行
现在我编辑 project/plugins.sbt 并添加以下行:
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.3")
如果我在 helloapp 目录中 运行 sbt 命令,我会收到以下错误:
[info] Loading project definition from /home/blr/kubeplayground/gultenetwork/project
[error] java.lang.NoClassDefFoundError: sbt/AutoPlugin
[error] Use 'last' for the full log.
Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore?
我无法理解为什么会这样。
此版本的 sbt-native-packager
是一个自动插件,它们仅在 SBT 0.13.5 中添加。当前SBT版本为0.13.11,更新到。