Fixed Ant task "jquery_with_plugins" and ill-formed XML
This commit is contained in:
parent
7ec65c2683
commit
939e92bea6
1 changed files with 5 additions and 4 deletions
|
@ -34,12 +34,13 @@
|
||||||
<fileset dir="${SRC_DIR}" includes="event/*.js" />
|
<fileset dir="${SRC_DIR}" includes="event/*.js" />
|
||||||
<fileset dir="${SRC_DIR}" includes="fx/*.js" />
|
<fileset dir="${SRC_DIR}" includes="fx/*.js" />
|
||||||
<fileset dir="${SRC_DIR}" includes="ajax/*.js" />
|
<fileset dir="${SRC_DIR}" includes="ajax/*.js" />
|
||||||
|
<fileset dir="${PLUGIN_DIR}" includes="${PLUGINS}" />
|
||||||
<fileset dir="${SRC_DIR}" includes="outro.js" />
|
<fileset dir="${SRC_DIR}" includes="outro.js" />
|
||||||
</concat>
|
</concat>
|
||||||
<echo message="${JQ} built." />
|
<echo message="${JQ} built." />
|
||||||
</target>
|
</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">
|
<antcall target="jquery">
|
||||||
<param name="PLUGINS" value="${PLUGINS_ALL}" />
|
<param name="PLUGINS" value="${PLUGINS_ALL}" />
|
||||||
</antcall>
|
</antcall>
|
||||||
|
@ -75,7 +76,7 @@
|
||||||
<echo message="${JQ_PACK} built." />
|
<echo message="${JQ_PACK} built." />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="pack_with_plugins" depends="with_plugins">
|
<target name="pack_with_plugins" depends="jquery_with_plugins">
|
||||||
<echo message="Building ${JQ_PACK}" />
|
<echo message="Building ${JQ_PACK}" />
|
||||||
<java jar="${JAR}" fork="true">
|
<java jar="${JAR}" fork="true">
|
||||||
<arg value="${BUILD_DIR}/build/pack.js" />
|
<arg value="${BUILD_DIR}/build/pack.js" />
|
||||||
|
@ -124,7 +125,7 @@
|
||||||
<echo message="Documentation built." />
|
<echo message="Documentation built." />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="docs_with_plugins" depends="with_plugins">
|
<target name="docs_with_plugins" depends="jquery_with_plugins">
|
||||||
<echo message="Building Documentation" />
|
<echo message="Building Documentation" />
|
||||||
<delete dir="${DOCS_DIR}" />
|
<delete dir="${DOCS_DIR}" />
|
||||||
<mkdir dir="${DOCS_DIR}/data" />
|
<mkdir dir="${DOCS_DIR}/data" />
|
||||||
|
|
Loading…
Reference in a new issue