Java 项目的 LessCSS/JS 编译器和压缩器
我正在寻找一个Java工具来将静态文件(css(less)、js)的编译和压缩添加到我的构建过程中。
我找到的唯一工具是 wr04j。但是,由于我不使用 Maven,所以我需要找到替代方案。
我的要求如下:
- 编译 .less css 文件
- ,以便能够合并 css 和 js 文件
- 版本控制
- 压缩 js 并缩小 css 与
- 构建过程轻松集成(开发与生产)
I am looking for a Java tool to add compilation and compression of static files (css (less),js) into my build process.
The only tool that I found is wr04j. However, since I don't use Maven I need to find an alternative.
My requirements are the following:
- compilation of .less css files
- to be able to combine css and js files
- versioning
- compress js and minify css
- easy integration with a build process (development vs. production)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Asual 有一个针对 java 的 less 编译器: http://www.asual.com/lesscss/
谷歌闭包编译也是一个java js压缩器: http://code.google.com/closure/compiler/< /a>
但是,如果您静态地知道这些文件的外观就像你使用js框架来打包js和less文件一样。我非常熟悉的一个是 javascriptmvc。它可以采用 js 和/或更少的树,并将其全部粉碎成单个 js 和 css 文件以进行部署: http://javascriptmvc .com/
Asual has a less compiler for java: http://www.asual.com/lesscss/
The google closure compile also is a java js compressor: http://code.google.com/closure/compiler/
However, if you know statically what these files look like you an use a js framework to package the js and less files. One I'm pretty familiar with is javascriptmvc. It can take a tree of js and/or less and smash it all into a single js and css file for deployment: http://javascriptmvc.com/