diff options
author | unknown <JZA@.(none)> | 2009-12-08 22:03:22 +0100 |
---|---|---|
committer | unknown <JZA@.(none)> | 2009-12-08 22:03:22 +0100 |
commit | 5778a35abd65673e2eb7f5012868203622c5b105 (patch) | |
tree | 934f8e22f0b4525bb368f8a9232ded2dfcdc430b /build.xml | |
parent | b3acfa5240ebe0fe1a8336f7497433ed869a0c3e (diff) | |
download | jquery-5778a35abd65673e2eb7f5012868203622c5b105.tar.gz jquery-5778a35abd65673e2eb7f5012868203622c5b105.zip |
Fixed ant build by cloning or pulling qunit and sizzle submodules, similar to the make build
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 33 |
1 files changed, 32 insertions, 1 deletions
@@ -11,9 +11,40 @@ <property name="JQ_LITE" value="${DIST_DIR}/jquery.lite.js" /> <property name="JQ_MIN" value="${DIST_DIR}/jquery.min.js" /> <loadfile property="version" srcfile="version.txt" /> + <loadfile property="sizzle-exports" srcfile="src/sizzle-jquery.js" /> + + <available property="qunit" file="test/qunit" /> + <available property="sizzle" file="src/sizzle" /> + + <target name="qunit-clone" unless="qunit"> + <exec executable="git" outputproperty="git-qunit" > + <arg line="clone git://github.com/jquery/qunit.git test/qunit"/> + </exec> + <echo message="git clone qunit: ${git-qunit}" /> + </target> + <target name="qunit-pull" if="qunit"> + <exec executable="git" outputproperty="git-qunit" dir="test/qunit" > + <arg line="pull origin master"/> + </exec> + <echo message="git pull sizzle: ${git-qunit}" /> + </target> + <target name="sizzle-clone" unless="sizzle"> + <exec executable="git" outputproperty="git-sizzle" > + <arg line="clone git://github.com/jeresig/sizzle.git src/sizzle"/> + </exec> + <echo message="git clone sizzle: ${git-sizzle}" /> + </target> + <target name="sizzle-pull" if="sizzle"> + <exec executable="git" outputproperty="git-sizzle" dir="src/sizzle" > + <arg line="pull origin master"/> + </exec> + <echo message="git pull sizzle: ${git-sizzle}" /> + </target> - <target name="jquery" description="Main jquery build, concatenates source files and replaces @VERSION"> + <target name="jquery" depends="qunit-clone,qunit-pull,sizzle-clone,sizzle-pull" description="Main jquery build, concatenates source files and replaces @VERSION"> <echo message="Building ${JQ}" /> + <copy file="src/sizzle/sizzle.js" tofile="src/selector.js" overwrite="true" /> + <replaceregexp match="// EXPOSE" replace="${sizzle-exports}" file="src/selector.js" /> <mkdir dir="${DIST_DIR}" /> <concat destfile="${JQ}"> <fileset dir="${SRC_DIR}" includes="intro.js" /> |