我有一堆js文件,需要按特定顺序连接(因为它们是MVC实现的一部分)。如何使用ANT完成此操作?
<filelist id="filelist" dir="path/to/base/directory">
<file name="util.js"/>
<file name="commons.js" />
</filelist>
<target name="concat-all">
<concat destfile="whatever" encoding="UTF-8" outputencoding="UTF-8" fixlastline="true">
<filelist refid="filelist" />
</concat>
</target>
我们使用这种方法,稍后生成的文件通过yui压缩器进行压缩。
对于concat任务,使用文件列表来保持顺序。