aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorunknown <JZA@.(none)>2009-12-08 20:59:05 +0100
committerunknown <JZA@.(none)>2009-12-08 20:59:05 +0100
commitd2d17705a02462277a8a3af74d770892e680614f (patch)
treeefb12155debda52885ceae33d2650f21f40761b9 /build.xml
parent77510fec025e654a8d2fdc6b2cbb564c159b3204 (diff)
downloadjquery-d2d17705a02462277a8a3af74d770892e680614f.tar.gz
jquery-d2d17705a02462277a8a3af74d770892e680614f.zip
Cleaning up build.xml in prepartion to get it running again
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml28
1 files changed, 0 insertions, 28 deletions
diff --git a/build.xml b/build.xml
index e992e4e46..7aaf738b2 100644
--- a/build.xml
+++ b/build.xml
@@ -1,20 +1,5 @@
<project name="jQuery" default="jquery" basedir=".">
- <!--
- To get jQuery even smaller, remove the modules you don't need by removing the fileset elements
- in the jquery-target, for example leaving only these:
-
- <fileset dir="${SRC_DIR}" includes="intro.js" />
- <fileset dir="${SRC_DIR}" includes="core.js" />
- <fileset dir="${SRC_DIR}" includes="selector.js" />
- <fileset dir="${SRC_DIR}" includes="event.js" />
- <fileset dir="${SRC_DIR}" includes="outro.js" />
-
- That'd remove ajax, fx and offset support, leaving basic selectors, manipulation and event handling.
- -->
-
- <!-- SETUP -->
-
<property description="Source Folder" name="SRC_DIR" value="src" />
<property description="Files for parsing etc." name="BUILD_DIR" value="build" />
<property description="YUICompressor" name="YUICompressor" value="${BUILD_DIR}/yuicompressor-2.4.2.jar" />
@@ -22,15 +7,12 @@
<property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="./dist" />
- <!-- Files names for distribution -->
<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" />
<loadfile property="version" srcfile="version.txt" />
- <!-- MAIN -->
-
<target name="jquery" description="Main jquery build, concatenates source files and replaces @VERSION">
<echo message="Building ${JQ}" />
<mkdir dir="${DIST_DIR}" />
@@ -75,16 +57,6 @@
<echo message="${JQ_MIN} built." />
</target>
- <target name="pack" depends="jquery" description="Remove all comments and whitespace and compress">
- <echo message="Building ${JQ_PACK}" />
- <java jar="${JAR}" fork="true">
- <arg value="${BUILD_DIR}/build/pack.js" />
- <arg value="${JQ}" />
- <arg value="${JQ_PACK}" />
- </java>
- <echo message="${JQ_PACK} built." />
- </target>
-
<target name="runtest">
<echo message="Running Automated Test Suite" />
<java jar="${JAR}" fork="true">