2007-12-19 23:26:05 +01:00
|
|
|
<project name="jQuery" default="jquery" basedir=".">
|
2007-01-25 15:06:43 +01:00
|
|
|
|
2007-12-19 23:26:05 +01:00
|
|
|
<property description="Source Folder" name="SRC_DIR" value="src" />
|
2007-01-25 15:06:43 +01:00
|
|
|
<property description="Files for parsing etc." name="BUILD_DIR" value="build" />
|
2009-01-04 18:21:00 +01:00
|
|
|
<property description="YUICompressor" name="YUICompressor" value="${BUILD_DIR}/yuicompressor-2.4.2.jar" />
|
2009-01-14 23:43:55 +01:00
|
|
|
<loadfile description="Version to build" property="version" srcfile="version.txt" />
|
2007-01-25 15:06:43 +01:00
|
|
|
|
2007-12-19 23:26:05 +01:00
|
|
|
<property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="./dist" />
|
2007-01-25 15:06:43 +01:00
|
|
|
|
|
|
|
<property name="JQ" value="${DIST_DIR}/jquery.js" />
|
|
|
|
<property name="JQ_LITE" value="${DIST_DIR}/jquery.lite.js" />
|
|
|
|
<property name="JQ_MIN" value="${DIST_DIR}/jquery.min.js" />
|
|
|
|
<property name="JQ_PACK" value="${DIST_DIR}/jquery.pack.js" />
|
2009-01-18 14:04:32 +01:00
|
|
|
<loadfile property="version" srcfile="version.txt" />
|
2007-01-25 15:06:43 +01:00
|
|
|
|
2007-12-19 23:26:05 +01:00
|
|
|
<target name="jquery" description="Main jquery build, concatenates source files and replaces @VERSION">
|
2007-01-25 15:06:43 +01:00
|
|
|
<echo message="Building ${JQ}" />
|
|
|
|
<mkdir dir="${DIST_DIR}" />
|
|
|
|
<concat destfile="${JQ}">
|
|
|
|
<fileset dir="${SRC_DIR}" includes="intro.js" />
|
2007-09-08 14:46:01 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="core.js" />
|
2009-12-07 16:45:20 +01:00
|
|
|
<fileset dir="${SRC_DIR}" includes="support.js" />
|
2008-12-30 23:05:45 +01:00
|
|
|
<fileset dir="${SRC_DIR}" includes="data.js" />
|
2009-12-06 23:19:33 +01:00
|
|
|
<fileset dir="${SRC_DIR}" includes="queue.js" />
|
2009-09-07 22:55:36 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="event.js" />
|
2007-09-08 14:46:01 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="selector.js" />
|
2009-03-18 22:15:38 +01:00
|
|
|
<fileset dir="${SRC_DIR}" includes="traversing.js" />
|
|
|
|
<fileset dir="${SRC_DIR}" includes="attributes.js" />
|
|
|
|
<fileset dir="${SRC_DIR}" includes="manipulation.js" />
|
2009-03-23 00:25:03 +01:00
|
|
|
<fileset dir="${SRC_DIR}" includes="css.js" />
|
2007-09-08 14:46:01 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="ajax.js" />
|
2007-09-08 16:44:29 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="fx.js" />
|
2007-09-08 20:02:39 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="offset.js" />
|
2008-04-29 05:26:06 +02:00
|
|
|
<fileset dir="${SRC_DIR}" includes="dimensions.js" />
|
2007-01-25 15:06:43 +01:00
|
|
|
<fileset dir="${SRC_DIR}" includes="outro.js" />
|
|
|
|
</concat>
|
2009-01-18 14:04:32 +01:00
|
|
|
<replaceregexp match="@VERSION" replace="${version}" flags="g" byline="true" file="${JQ}" />
|
2009-01-18 14:30:09 +01:00
|
|
|
<replaceregexp match="Date: " replace="Date: ${date}" file="${JQ}" />
|
|
|
|
<replaceregexp match="Revision: " replace="Revision: ${revision}" file="${JQ}" />
|
2007-12-19 23:26:05 +01:00
|
|
|
<echo message="${JQ} built." />
|
2007-01-25 15:06:43 +01:00
|
|
|
</target>
|
|
|
|
|
2007-12-19 23:26:05 +01:00
|
|
|
<target name="min" depends="jquery" description="Remove all comments and whitespace, no compression, great in combination with GZip">
|
2007-01-25 15:06:43 +01:00
|
|
|
<echo message="Building ${JQ_MIN}" />
|
2009-01-04 18:21:00 +01:00
|
|
|
<apply executable="java" parallel="false" verbose="true" dest="${DIST_DIR}">
|
|
|
|
<fileset dir="${DIST_DIR}">
|
|
|
|
<include name="jquery.js" />
|
|
|
|
</fileset>
|
|
|
|
<arg line="-jar" />
|
|
|
|
<arg path="${YUICompressor}" />
|
|
|
|
<arg value="--charset" />
|
|
|
|
<arg value="ANSI" />
|
|
|
|
<arg value="-o" />
|
|
|
|
<targetfile />
|
|
|
|
<mapper type="glob" from="jquery.js" to="jquery.min.js" />
|
|
|
|
</apply>
|
2007-01-25 15:06:43 +01:00
|
|
|
<echo message="${JQ_MIN} built." />
|
|
|
|
</target>
|
|
|
|
|
2007-09-13 18:44:44 +02:00
|
|
|
<target name="runtest">
|
|
|
|
<echo message="Running Automated Test Suite" />
|
|
|
|
<java jar="${JAR}" fork="true">
|
|
|
|
<arg value="${BUILD_DIR}/runtest/test.js" />
|
|
|
|
</java>
|
|
|
|
<echo message="Test Suite Finished" />
|
2007-07-17 09:54:14 +02:00
|
|
|
</target>
|
2007-01-25 15:06:43 +01:00
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete dir="${DIST_DIR}" />
|
|
|
|
</target>
|
|
|
|
|
2007-12-19 23:26:05 +01:00
|
|
|
<target name="all" depends="clean,jquery,min,pack">
|
2007-01-25 15:06:43 +01:00
|
|
|
<echo message="Build complete." />
|
|
|
|
</target>
|
2009-01-14 23:43:55 +01:00
|
|
|
|
|
|
|
<target name="openAjaxMetadata">
|
|
|
|
<property name="target" value="openAjaxMetadata-jquery-${version}.xml" />
|
|
|
|
<delete file="dist/jquery-*.xml" />
|
|
|
|
<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" />
|
|
|
|
<delete file="${target}" />
|
|
|
|
</target>
|
2006-08-16 23:14:03 +02:00
|
|
|
|
|
|
|
</project>
|