java可执行jar的SBT项目
将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 assembly-sbt 插件(最初由 Coda Hale 创建,现在由 Eugene Yokota 维护):https://github.com/sbt/sbt-assemble
将其添加到项目后它将构建一个所谓的“fatjar”,可通过 java -jar projectName- assembly.jar 执行。它将自动检测您的主要方法 - 如果您的源代码中有多个方法,您可以通过设置
mainclass
显式设置要使用的方法,例如:注意:我将此答案编辑为与当前版本的 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 settingmainclass
, e.g.:Note: I edited this answer to be up-to-date with the current release of SBT (0.11+).