Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将我的 SBT 项目构建并打包为 .war 文件。我找到了插件 xsbt-web-plugin,但它需要我不需要的 Jetty 依赖项,因为我使用 Apache Tomcat 进行生产和开发。我对 SBT 的所有要求就是使用标准层次结构将我的构建打包到 .war 文件中。是否可以?
如果您在build.sbt文件中包含以下行,jetty 将仅用于运行容器以在 sbt 中测试您的应用程序;它不会包含在war文件中:
build.sbt
libraryDependencies += "org.eclipse.jetty" % "jetty-webapp" % "8.0.4.v20111024" % "container"
如果您不想,则不必使用容器进行测试。