0

首先我需要说,我是 Scala 和 SBT 初学者,所以这是我的第一个项目。我尝试在 Heroku 上部署 scala 应用程序。我收到此错误:

error: not found: value StartScriptPlugin StartScriptPlugin.stage in Compile := Unit

这是我的 build.sbt。它有什么问题?我知道 Compile := Unit 中的 StartScriptPlugin.stage 是这样的,但我找到了一些示例,他们总是以这种方式使用它。谢谢

name := "Survey server" 

version := "1.0"

scalaVersion := "2.9.2"

resolvers ++= Seq("repo.codahale.com" at "http://repo.codahale.com", Classpaths.typesafeResolver)

addSbtPlugin("com.typesafe.startscript" % "xsbt-start-script-plugin" % "0.5.3")

StartScriptPlugin.stage in Compile := Unit

EclipseKeys.withSource := true

libraryDependencies ++= Seq( 
"net.databinder" %% "unfiltered-filter" % "0.6.3", 
"net.databinder" %% "unfiltered-jetty" % "0.6.3", 
"net.databinder.dispatch" %% "core" % "0.9.0", 
"com.codahale" % "jerkson_2.9.1" % "0.5.0", 
"org.scalaquery" % "scalaquery_2.9.1" % "0.10.0-M1", 
"postgresql" % "postgresql" % "9.1-901.jdbc4" )
4

1 回答 1

1

你需要告诉 SBT 你的项目使用了 StartScriptPlugin。这是通过使用 in 中的addSbtPlugin命令完成的project/plugins.sbt。这在 SBT 文档中都有解释: https ://github.com/harrah/xsbt/wiki/Getting-Started-Using-Plugins

您尝试使用的插件的文档甚至可以准确地告诉您需要添加到project/plugins.sbt. 对于 SBT 0.11,这将是:

resolvers += Classpaths.typesafeResolver

addSbtPlugin( "com.typesafe.startscript" % "xsbt-start-script-plugin" % "0.5.2" )

https://github.com/typesafehub/xsbt-start-script-plugin

于 2012-09-26T09:32:22.793 回答