如何在没有sbt的情况下运行sbt管理的应用程序项目?

时间:2011-08-25 18:04:11

标签: scala sbt

我的问题是关于运行由sbt 0.10.1管理的项目中的应用程序,因此依赖于它的自动依赖关系管理(下载并设置适当的类路径来运行)。

使用自动依赖关系管理时,显示,运行应用程序的唯一方法是使用sbt本身,因为它知道如何设置类路径(在Ivy2的帮助下)。

如何在没有sbt的情况下运行应用程序?

4 个答案:

答案 0 :(得分:11)

您还可以使用Typesafe的 xsbt-start-script-plugin (编辑:现在sbt-start-script)生成具有正确类路径的shell脚本:

  

此插件允许您为a生成脚本target/start   项目。该脚本将“就地”运行项目(没有   先建立一个包。)

     

target/start脚本与sbt run类似,但不依赖   在SBT。 sbt run不建议用于生产,因为它   保持SBT本身在内存中。 target/start旨在运行   应用程序在生产中。

     

该插件添加了一个生成start-script的任务target/start。   它还添加了stage任务,别名为start-script任务。

这是运行Scala应用程序的Heroku uses

答案 1 :(得分:3)

我已经使用retronymsbt-onejar plugin来创建包含所有依赖项的可执行jar(非常类似于Maven的Assembly plugin)。它非常简单,文档齐全。

答案 2 :(得分:2)

如果要创建包含所有应用程序和依赖项的“胖”jar,可以使用sbt-assembly plugin。然后,您可以将您的应用程序作为标准jar运行,而无需sbt。

答案 3 :(得分:1)

您还可以创建任务来创建文件以启动应用。 @Kipton Barros在How do I run an sbt main class from the shell as normal command-line program?中发布了这个:

  val MkUnixlauncher = config("mkunixlauncher") extend(Compile)
  val mkunixlauncher = TaskKey[Unit]("mkunixlauncher")
  val mkunixlauncherTask = mkunixlauncher <<= (target, fullClasspath in Runtime) map { (target, cp) =>
    def writeFile(file: File, str: String) {
      val writer = new PrintWriter(file)
      writer.println(str)
      writer.close()
    }
    val cpString = cp.map(_.data).mkString(System.getProperty("path.separator"))
    val launchString = """
CLASSPATH="%s"
scala -usejavacp -Djava.class.path="${CLASSPATH}" "$@"
""".format(cpString)
    val targetFile = (target / "scala-sbt").asFile
    writeFile(targetFile, launchString)
    targetFile.setExecutable(true)
  }

在目标目录中创建一个名为scala-sbt的文件,该文件已正确设置类路径以运行该应用程序。调整味道。