aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorKlaus Hartl <klaus.hartl@googlemail.com>2006-11-01 10:23:22 +0000
committerKlaus Hartl <klaus.hartl@googlemail.com>2006-11-01 10:23:22 +0000
commit939e92bea62dfd86de2f2b1a559617c5da1eeef2 (patch)
treeca54d64dc9866d0067894ffe350267569efd023e /build.xml
parent7ec65c268355c52c871cf1e015fdd5551b83e0b7 (diff)
downloadjquery-939e92bea62dfd86de2f2b1a559617c5da1eeef2.tar.gz
jquery-939e92bea62dfd86de2f2b1a559617c5da1eeef2.zip
Fixed Ant task "jquery_with_plugins" and ill-formed XML
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index cf1878171..49596e9ba 100644
--- a/build.xml
+++ b/build.xml
@@ -34,15 +34,16 @@
<fileset dir="${SRC_DIR}" includes="event/*.js" />
<fileset dir="${SRC_DIR}" includes="fx/*.js" />
<fileset dir="${SRC_DIR}" includes="ajax/*.js" />
+ <fileset dir="${PLUGIN_DIR}" includes="${PLUGINS}" />
<fileset dir="${SRC_DIR}" includes="outro.js" />
</concat>
<echo message="${JQ} built." />
</target>
- <target name="with_plugins" description="Build jquery with all plugins">
+ <target name="jquery_with_plugins" description="Build jquery with all plugins">
<antcall target="jquery">
<param name="PLUGINS" value="${PLUGINS_ALL}" />
- </antcall>
+ </antcall>
</target>
<target name="lite" depends="jquery">
@@ -75,7 +76,7 @@
<echo message="${JQ_PACK} built." />
</target>
- <target name="pack_with_plugins" depends="with_plugins">
+ <target name="pack_with_plugins" depends="jquery_with_plugins">
<echo message="Building ${JQ_PACK}" />
<java jar="${JAR}" fork="true">
<arg value="${BUILD_DIR}/build/pack.js" />
@@ -124,7 +125,7 @@
<echo message="Documentation built." />
</target>
- <target name="docs_with_plugins" depends="with_plugins">
+ <target name="docs_with_plugins" depends="jquery_with_plugins">
<echo message="Building Documentation" />
<delete dir="${DOCS_DIR}" />
<mkdir dir="${DOCS_DIR}/data" />