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 来管理我的 Lift 项目。我想部署它,但是当我运行“sbt package”时,它会生成一个 60MB 的 war 文件。这看起来相当大 - 有没有办法可以减小尺寸?
谢谢!
也许ProGuard可以提供帮助。
原来这是因为'sbt package'遵循符号链接并将我所有的图像打包到warfile中。无论如何,感谢您的提示!