经过几天搜索如何在 Ant 构建脚本中使用 YUI 压缩器后,我终于让它工作了。存在许多用于创建 Ant 任务并在构建脚本中使用它的旧示例(<2010),但这对我来说太过分了。
许多示例也很陈旧,需要更多有关 Ant 或配置 Ant 任务的知识。下面的解决方案对我来说是快速、简单和有效的。
经过几天搜索如何在 Ant 构建脚本中使用 YUI 压缩器后,我终于让它工作了。存在许多用于创建 Ant 任务并在构建脚本中使用它的旧示例(<2010),但这对我来说太过分了。
许多示例也很陈旧,需要更多有关 Ant 或配置 Ant 任务的知识。下面的解决方案对我来说是快速、简单和有效的。
以下内容已添加到我的一个<target>
标签中,以压缩单个目录中的所有javascript 文件。这些文件保留其原始名称。要为 CSS 执行此操作,只需将“js”切换为“css”并相应地更新路径。
这是使用 YUI Compressor 2.4.7 完成的,我在 Eclipse Juno 中运行 Ant 构建脚本,无需更改类路径或其他设置修改。
<!-- Minimizing Javascript files -->
<echo message="Compressing Javascript files at location: ${build.root}/resources/js/*.js" />
<java jar="c:/dev/lib/yuicompressor-2.4.7/build/yuicompressor.jar" fork="true">
<arg value="${build.root}/resources/js/*.js" /> <!-- input path for JS files -->
<!--<arg value="-v" /> --><!-- Turn on verbose -->
<arg value="-o" />
<arg value="'.js$:.js'" />
<arg value="${build.root}/resources/js/*.js" /> <!-- output path for JS files -->
<classpath>
<pathelement location="c:/dev/lib/yuicompressor-2.4.7/build/yuicompressor.jar"/>
</classpath>
</java>
请随时改进此答案。上面的解决方案对我有用,但我不是专家。
我正在使用以下解决方案来缩小文件,因为我得到了FileNotFoundException
前面的答案。
要缩小 CSS,请替换js
为css
以下内容。
<target name="compress" description="compress the JS files">
<copy todir="temp/js" overwrite="yes">
<fileset dir="original/js"/>
</copy>
<apply executable="java" parallel="false" dest="temp/js">
<fileset dir="temp/js" includes="**/*.js" />
<arg line="-jar"/>
<arg path="test_lib/yuicompressor-2.4.8.jar" />
<arg line="-v"/>
<srcfile/>
<arg line="-o"/>
<mapper type="glob" from="*.js" to="*-min.js"/>
<targetfile/>
</apply>
<move todir="original/js" overwrite="true">
<fileset dir="temp/js" />
<mapper type="glob" from="*-min.js" to="*.js"/>
</move>
</target>
我尝试了维克多的代码。实际上不需要临时目录。我使用了这段代码,它对我有用。
<apply executable="java" parallel="false" >
<fileset dir="${build.root}/resources/js" includes="**/*.js" />
<arg line="-jar"/>
<arg path="${basedirectory}/yuicompressor-2.4.8.jar" />
<srcfile/>
<arg value="-o" />
<arg value="'.js$:.js'" />
<!-- output path for JS files -->
<arg value="${build.root}/resources/js/*.js" />
<arg line="--nomunge" />
<arg line="--preserve-semi" />
</apply>
您可以压缩特定文件夹中可用的所有 Js 文件,而无需复制到临时文件夹。
<property name="js.source" value="js/combine" />
<property name="js.target" value="js/compress" />
<fileset dir="${yuicompressor.lib}">
<include name="yui/yuicompressor-2.4.z8.jar"/>
</fileset>
<target name="minifyjs" description="compress the JS files">
<delete includeEmptyDirs="true">
<fileset dir="${js.target}" includes="**/*" defaultexcludes="no"/>
</delete>
<apply executable="java" parallel="false" verbose="true" failonerror="yes">
<fileset dir="${js.source}" includes="**/*.js" excludes="**/*-min.js, **/*.min.js"/>
<arg line="-jar"/>
<arg path="${yuicompressor.lib}" />
<srcfile/>
<arg line="-o"/>
<targetfile/>
<mapper type="glob" from="*.js" to="${js.target}/*.js"/>
<arg line="--charset"/>
<arg line="utf-8"/>
</apply>
</target>
上面的代码对我来说工作正常。