java可执行jar的SBT项目

发布于 2024-11-04 07:58:59 字数 94 浏览 1 评论 0原文

将 SBT 项目的目标包设置为可执行 jar 文件的最佳方法是什么?

它需要捆绑 scala-library.jar 并设置 main-method 的清单。

What is the best way to set the target package for an SBT project to be an executable jar file?

It would need to bundle scala-library.jar and set the manifest for main-method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习惯成性 2024-11-11 07:58:59

使用 assembly-sbt 插件(最初由 Coda Hale 创建,现在由 Eugene Yokota 维护):https://github.com/sbt/sbt-assemble

将其添加到项目后它将构建一个所谓的“fatjar”,可通过 java -jar projectName- assembly.jar 执行。它将自动检测您的主要方法 - 如果您的源代码中有多个方法,您可以通过设置 mainclass 显式设置要使用的方法,例如:

mainClass in assembly := Some("com.package.ClassNameWithMain")

注意:我将此答案编辑为与当前版本的 SBT (0.11+) 保持同步。

Use the assembly-sbt plugin (originally created by Coda Hale, now maintained by Eugene Yokota): https://github.com/sbt/sbt-assembly

Once you add this to your project it will build a so-called "fatjar" which is executable via java -jar projectName-assembly.jar. It will autodetect your main method -- if there is more than one in your source, you can explicitly set which one to use by setting mainclass, e.g.:

mainClass in assembly := Some("com.package.ClassNameWithMain")

Note: I edited this answer to be up-to-date with the current release of SBT (0.11+).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文