Fixed ant build to be more consistent with Makefile. Now has all same targets (see README.md) and
* generates an identical jquery.js to that of make * generates a min file * runs jslint. * cleans more thoroughly * can be passed a PREFIX property
This commit is contained in:
parent
bb0f1a97fb
commit
ef9fb80cab
50
build.xml
50
build.xml
|
@ -1,45 +1,54 @@
|
||||||
<project name="jQuery" default="jquery" basedir=".">
|
<project name="jQuery" default="all" basedir=".">
|
||||||
|
|
||||||
<loadfile property="version" srcfile="version.txt" />
|
<loadfile property="version" srcfile="version.txt" />
|
||||||
<property description="Folder for jquery and min target" name="dist" value="./dist" />
|
<property name="PREFIX" value="." />
|
||||||
|
<property description="Folder for jquery and min target" name="dist" value="${PREFIX}/dist" />
|
||||||
|
|
||||||
<property name="JQ" value="${dist}/jquery.js" />
|
<property name="JQ" value="${dist}/jquery.js" />
|
||||||
<property name="JQ_MIN" value="${dist}/jquery.min.js" />
|
<property name="JQ_MIN" value="${dist}/jquery.min.js" />
|
||||||
|
|
||||||
<loadfile property="sizzle-exports" srcfile="src/sizzle-jquery.js" />
|
<loadfile property="sizzle-exports" srcfile="src/sizzle-jquery.js" />
|
||||||
|
|
||||||
<available property="qunit" file="test/qunit" />
|
<available property="qunit" file="test/qunit" />
|
||||||
<available property="sizzle" file="src/sizzle" />
|
<available property="sizzle" file="src/sizzle" />
|
||||||
|
|
||||||
|
<target name="all" depends="jquery,lint,min" />
|
||||||
|
|
||||||
<target name="qunit-clone" unless="qunit">
|
<target name="qunit-clone" unless="qunit">
|
||||||
<exec executable="git" outputproperty="git-qunit" >
|
<exec executable="git" outputproperty="git-qunit" >
|
||||||
<arg line="clone git://github.com/jquery/qunit.git test/qunit"/>
|
<arg line="clone git://github.com/jquery/qunit.git test/qunit" />
|
||||||
</exec>
|
</exec>
|
||||||
<echo message="git clone qunit: ${git-qunit}" />
|
<echo message="git clone qunit: ${git-qunit}" />
|
||||||
</target>
|
</target>
|
||||||
<target name="qunit-pull" if="qunit">
|
<target name="qunit-pull" if="qunit">
|
||||||
<exec executable="git" outputproperty="git-qunit" dir="test/qunit" >
|
<exec executable="git" outputproperty="git-qunit" dir="test/qunit" >
|
||||||
<arg line="pull origin master"/>
|
<arg line="pull origin master" />
|
||||||
</exec>
|
</exec>
|
||||||
<echo message="git pull sizzle: ${git-qunit}" />
|
<echo message="git pull sizzle: ${git-qunit}" />
|
||||||
</target>
|
</target>
|
||||||
<target name="sizzle-clone" unless="sizzle">
|
<target name="sizzle-clone" unless="sizzle">
|
||||||
<exec executable="git" outputproperty="git-sizzle" >
|
<exec executable="git" outputproperty="git-sizzle" >
|
||||||
<arg line="clone git://github.com/jeresig/sizzle.git src/sizzle"/>
|
<arg line="clone git://github.com/jeresig/sizzle.git src/sizzle" />
|
||||||
</exec>
|
</exec>
|
||||||
<echo message="git clone sizzle: ${git-sizzle}" />
|
<echo message="git clone sizzle: ${git-sizzle}" />
|
||||||
</target>
|
</target>
|
||||||
<target name="sizzle-pull" if="sizzle">
|
<target name="sizzle-pull" if="sizzle">
|
||||||
<exec executable="git" outputproperty="git-sizzle" dir="src/sizzle" >
|
<exec executable="git" outputproperty="git-sizzle" dir="src/sizzle" >
|
||||||
<arg line="pull origin master"/>
|
<arg line="pull origin master" />
|
||||||
</exec>
|
</exec>
|
||||||
<echo message="git pull sizzle: ${git-sizzle}" />
|
<echo message="git pull sizzle: ${git-sizzle}" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="jquery" depends="qunit-clone,qunit-pull,sizzle-clone,sizzle-pull" description="Main jquery build, concatenates source files and replaces @VERSION">
|
<target name="init" depends="qunit-clone,qunit-pull,sizzle-clone,sizzle-pull" />
|
||||||
<echo message="Building ${JQ}" />
|
|
||||||
|
<target name="selector" depends="init" description="Builds the selector library for jQuery from Sizzle.">
|
||||||
<copy file="src/sizzle/sizzle.js" tofile="src/selector.js" overwrite="true" />
|
<copy file="src/sizzle/sizzle.js" tofile="src/selector.js" overwrite="true" />
|
||||||
<replaceregexp match="// EXPOSE" replace="${sizzle-exports}" file="src/selector.js" />
|
<replaceregexp match="// EXPOSE(.*) " replace="// EXPOSE\1 ${sizzle-exports}" file="src/selector.js" />
|
||||||
|
<replaceregexp match="window.Sizzle(.*) " replace="" file="src/selector.js" />
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="jquery" depends="init,selector" description="Main jquery build, concatenates source files and replaces @VERSION">
|
||||||
|
<echo message="Building ${JQ}" />
|
||||||
<mkdir dir="${dist}" />
|
<mkdir dir="${dist}" />
|
||||||
<concat destfile="${JQ}">
|
<concat destfile="${JQ}">
|
||||||
<fileset file="src/intro.js" />
|
<fileset file="src/intro.js" />
|
||||||
|
@ -61,12 +70,18 @@
|
||||||
</concat>
|
</concat>
|
||||||
<replaceregexp match="@VERSION" replace="${version}" flags="g" byline="true" file="${JQ}" />
|
<replaceregexp match="@VERSION" replace="${version}" flags="g" byline="true" file="${JQ}" />
|
||||||
<exec executable="git" outputproperty="date">
|
<exec executable="git" outputproperty="date">
|
||||||
<arg line="log -1 --pretty=format:%ad"/>
|
<arg line="log -1 --pretty=format:%ad" />
|
||||||
</exec>
|
</exec>
|
||||||
<replaceregexp match="Date: " replace="Date: ${date}" file="${JQ}" />
|
<replaceregexp match="Date: " replace="Date: ${date}" file="${JQ}" />
|
||||||
<echo message="${JQ} built." />
|
<echo message="${JQ} built." />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="lint" depends="jquery" description="Check jQuery against JSLint">
|
||||||
|
<exec executable="java">
|
||||||
|
<arg line="-jar build/js.jar build/jslint-check.js" />
|
||||||
|
</exec>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="min" depends="jquery" description="Remove all comments and whitespace, no compression, great in combination with GZip">
|
<target name="min" depends="jquery" description="Remove all comments and whitespace, no compression, great in combination with GZip">
|
||||||
<echo message="Building ${JQ_MIN}" />
|
<echo message="Building ${JQ_MIN}" />
|
||||||
<apply executable="java" parallel="false" verbose="true" dest="${dist}">
|
<apply executable="java" parallel="false" verbose="true" dest="${dist}">
|
||||||
|
@ -83,25 +98,28 @@
|
||||||
<mapper type="glob" from="jquery.js" to="tmpmin" />
|
<mapper type="glob" from="jquery.js" to="tmpmin" />
|
||||||
</apply>
|
</apply>
|
||||||
<concat destfile="${JQ_MIN}">
|
<concat destfile="${JQ_MIN}">
|
||||||
<filelist files="${JQ}, dist/tmpmin"/>
|
<filelist files="${JQ}, ${dist}/tmpmin" />
|
||||||
<filterchain>
|
<filterchain>
|
||||||
<headfilter lines="15"/>
|
<headfilter lines="15" />
|
||||||
</filterchain>
|
</filterchain>
|
||||||
</concat>
|
</concat>
|
||||||
<concat destfile="${JQ_MIN}" append="yes">
|
<concat destfile="${JQ_MIN}" append="yes">
|
||||||
<filelist files="dist/tmpmin"/>
|
<filelist files="${dist}/tmpmin" />
|
||||||
</concat>
|
</concat>
|
||||||
<delete file="dist/tmpmin"/>
|
<delete file="${dist}/tmpmin" />
|
||||||
<echo message="${JQ_MIN} built." />
|
<echo message="${JQ_MIN} built." />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="clean">
|
<target name="clean">
|
||||||
<delete dir="${dist}" />
|
<delete dir="${dist}" />
|
||||||
|
<delete file="src/selector.js" />
|
||||||
|
<delete dir="test/qunit" />
|
||||||
|
<delete dir="src/sizzle" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="openAjaxMetadata">
|
<target name="openAjaxMetadata">
|
||||||
<property name="target" value="openAjaxMetadata-jquery-${version}.xml" />
|
<property name="target" value="openAjaxMetadata-jquery-${version}.xml" />
|
||||||
<delete file="dist/jquery-*.xml" />
|
<delete file="${dist}/jquery-*.xml" />
|
||||||
<get src="http://www.exfer.net/jquery/createjQueryXMLDocs.py?version=1.3" dest="${target}" />
|
<get src="http://www.exfer.net/jquery/createjQueryXMLDocs.py?version=1.3" dest="${target}" />
|
||||||
<xslt includes="${target}" excludes="build.xml" destdir="./dist" style="build/style.xsl" extension=".xml" />
|
<xslt includes="${target}" excludes="build.xml" destdir="./dist" style="build/style.xsl" extension=".xml" />
|
||||||
<delete file="${target}" />
|
<delete file="${target}" />
|
||||||
|
|
Loading…
Reference in a new issue