首先我需要说,我是 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" )