diff options
author | Klaus Hartl <klaus.hartl@googlemail.com> | 2006-11-01 10:23:22 +0000 |
---|---|---|
committer | Klaus Hartl <klaus.hartl@googlemail.com> | 2006-11-01 10:23:22 +0000 |
commit | 939e92bea62dfd86de2f2b1a559617c5da1eeef2 (patch) | |
tree | ca54d64dc9866d0067894ffe350267569efd023e /build.xml | |
parent | 7ec65c268355c52c871cf1e015fdd5551b83e0b7 (diff) | |
download | jquery-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.xml | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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" />
|