在 SBT 0.10 中指定 Jetty 端口
我需要使用 SBT 0.10 在不同于默认 8080 的端口上运行嵌入式 Jetty SBT 0.7 的问题在这里得到了解答 - 当从 sbt 在开发模式下运行 lift web 应用程序时,我需要在哪个文件中添加 jetty 端口的覆盖?。 我找不到对 SBT 0.10 执行相同操作的参考 我正在使用多模块的完整配置(Build.scala),而不是快速使用 sbt dsl。
I need to run the embedded Jetty on port different to the default 8080, using SBT 0.10
The question was answered here for SBT 0.7 - In which file do I need to add an override for the jetty port when running a lift webapp in dev mode from sbt?.
I can find no reference to do the same for SBT 0.10
I am using the Full configuration (Build.scala) for multi modules and not quick the sbt dsl.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 SBT 0.10 中,Jetty 支持不再作为构建工具的一部分,而是作为 插件。为了更改端口,您必须使用您的值初始化
jettyPort
设置:或者,如果您从控制台运行:
请参阅插件说明以获取更多详细信息。
In SBT 0.10 Jetty support no longer goes as a part of the build tool, but rather shipped as a plugin. In order to change the port, you'll have to initialize
jettyPort
setting with your value:Or, if you're running from the console:
See plugin instructions for more details.
对于 sbt 0.11.2 ,您
在 build.sbt 中指定
For sbt 0.11.2 , you specify
in build.sbt