aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-11-07 14:55:14 +0100
committerJohn Resig <jeresig@gmail.com>2009-11-07 14:55:14 +0100
commit339708cda9985aeef947a28bec1354bdfcc2a358 (patch)
tree0778db43c2adb9bed1b5cdb1cee9eb5a22a6269a /build.xml
parent10068d5fd03ebd621cc26e74cb7fc1ae9a5abab7 (diff)
downloadjquery-339708cda9985aeef947a28bec1354bdfcc2a358.tar.gz
jquery-339708cda9985aeef947a28bec1354bdfcc2a358.zip
Removing some of the SVN-specific stuff from the Ant build file (should probably be updated to use the new Git functionality.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml16
1 files changed, 0 insertions, 16 deletions
diff --git a/build.xml b/build.xml
index d0ab83c16..5235347b4 100644
--- a/build.xml
+++ b/build.xml
@@ -17,7 +17,6 @@
<property description="Source Folder" name="SRC_DIR" value="src" />
<property description="Files for parsing etc." name="BUILD_DIR" value="build" />
- <property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" />
<property description="YUICompressor" name="YUICompressor" value="${BUILD_DIR}/yuicompressor-2.4.2.jar" />
<loadfile description="Version to build" property="version" srcfile="version.txt" />
@@ -29,21 +28,6 @@
<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" />
-
- <taskdef resource="net/sf/antcontrib/antcontrib.properties">
- <classpath>
- <pathelement location="build/ant-contrib-0.6.jar"/>
- </classpath>
- </taskdef>
- <exec executable="svn" outputproperty="svnlog.out" >
- <arg line="info ."/>
- </exec>
- <propertyregex property="revision" input="${svnlog.out}" select="\1">
- <regexp pattern="Revision: ([0-9]*)"/>
- </propertyregex>
- <propertyregex property="date" input="${svnlog.out}" select="\1">
- <regexp pattern="Date: (.+\))"/>
- </propertyregex>
<!-- MAIN -->