Skip to content

Commit

Permalink
Added targets to allow building jquery with plugins; Creating the raw…
Browse files Browse the repository at this point in the history
… source files with plugins added works, packed/docs/tests not yet
  • Loading branch information
jzaefferer committed Sep 23, 2006
1 parent 065be00 commit c79f069
Showing 1 changed file with 44 additions and 5 deletions.
49 changes: 44 additions & 5 deletions build.xml
@@ -1,8 +1,12 @@
<project name="jQuery" default="all" basedir=".">
<project name="jQuery" default="all" basedir=".">

<!-- SETUP -->

<property name="SRC_DIR" value="src" />
<property name="BUILD_DIR" value="build" />
<property name="JAR" value="${BUILD_DIR}/js.jar" />
<property name="JAR" value="${BUILD_DIR}/js.jar" />

<property name="PLUGIN_DIR" location="../plugins" />

<property name="PREFIX" value="." />
<property name="DOCS_DIR" value="${PREFIX}/docs" />
Expand All @@ -12,8 +16,11 @@
<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" />

<property name="JQ_PACK" value="${DIST_DIR}/jquery.pack.js" />
<property name="JQ_TEMP" value="${DIST_DIR}/jquery.js.tmp" />

<!-- MAIN -->

<target name="jquery">
<echo message="Building ${JQ}" />
<mkdir dir="${DIST_DIR}" />
Expand Down Expand Up @@ -105,6 +112,38 @@

<target name="all" depends="clean,jquery,lite,min,pack,docs,test" >
<echo message="Build complete." />
</target>
</target>

<!-- PLUGINS -->

<target name="ifx" description="Build jquery with Interface fx plugins">
<antcall target="plugin">
<param name="plugins" value="interface/ifx*.js" />
</antcall>
</target>

<target name="plugindocs" description="Build documentation for a set of plugins - Not working, yet">
<antcall target="raw">
<param name="plugins" value="center/*.js, cookie/*.js, form/*.js" />
</antcall>
<antcall target="docs" />
</target>

<target name="raw" description="Build a set of plugins, without jquery itself">
<concat destfile="${JQ}">
<fileset dir="${PLUGIN_DIR}" includes="${plugins}" />
</concat>
<echo message="${plugins} built." />
</target>

<target name="plugin" depends="jquery" description="Build jquery with a given set of plugins, see ifx target for an example">
<copy tofile="${JQ_TEMP}" file="${JQ}"/>
<concat destfile="${JQ}">
<fileset file="${JQ_TEMP}" />
<fileset dir="${PLUGIN_DIR}" includes="${plugins}" />
</concat>
<delete file="${JQ_TEMP}" />
<echo message="${JQ} with ${plugins} built." />
</target>

</project>

0 comments on commit c79f069

Please sign in to comment.