Skip to content

Commit

Permalink
Removed obsolete tests for YUI Compressor.
Browse files Browse the repository at this point in the history
This test is no longer needed as the jar file is included in the build/lib directory.
  • Loading branch information
elson committed Jul 21, 2009
1 parent 333f6e2 commit 02a8913
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions build.xml
Expand Up @@ -168,7 +168,7 @@
</copy>
</target>

<target name="min" depends="check.yuicompressor,temp">
<target name="min" depends="temp">
<echo message="Creating minified files"/>
<apply executable="java" parallel="false" failonerror="true">
<arg line="-jar"/>
Expand Down Expand Up @@ -203,22 +203,12 @@
compression="gzip" />
</target>

<target name="all" depends="check.yuicompressor,dist">
<target name="all" depends="dist">
<echo message="" />
<echo message="**************************************" />
<echo message="Glow version ${VERSION} build complete" />
<echo message="**************************************" />
<echo message="" />
</target>

<!-- checks -->

<target name="check.yuicompressor">
<condition property="yui.ok">
<available file="${YUI_JAR}" />
</condition>
<fail unless="yui.ok">${YUI_JAR} not found. Please ensure YUI Compressor is installed, and referenced properly in build.properties.
</fail>
</target>

</project>

0 comments on commit 02a8913

Please sign in to comment.