`sbt package` 会产生巨大的 war 文件 - 如何使其更小?
我目前正在使用 SBT 来管理我的 Lift 项目。我想部署它,但是当我运行“sbt package”时,它会生成一个 60MB 的 war 文件。这看起来相当大——有什么方法可以缩小尺寸吗?
谢谢!
I'm currently using SBT to manage my Lift project. I'd like to deploy it, but when I run 'sbt package' it produces a 60MB war file. This seems pretty large - are there ways I could cut down the size?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许 ProGuard 可以提供帮助。
Perhaps ProGuard could help.
事实证明,这是因为“sbt package”遵循符号链接并将我的所有图像打包到 warfile 中。不管怎样,谢谢你的提示!
Turns out it was because 'sbt package' was following symlinks and packed all my images into the warfile. Thanks for the tip anyway!