c32ff5
diff --git a/build.properties b/build.properties
c32ff5
index 9340c5b..557d5b0 100644
c32ff5
--- a/build.properties
c32ff5
+++ b/build.properties
c32ff5
@@ -8,6 +8,6 @@ testsrc.dir=${basedir}/testcases
c32ff5
 
c32ff5
 java.awt.headless=true
c32ff5
 
c32ff5
-antcontrib.available=true
c32ff5
+antcontrib.available=false
c32ff5
 
c32ff5
 build.cache.dir=lib
c32ff5
diff --git a/common_build.xml b/common_build.xml
c32ff5
index 3a42daa..104e1c8 100644
c32ff5
--- a/common_build.xml
c32ff5
+++ b/common_build.xml
c32ff5
@@ -152,9 +152,6 @@ TYPICAL TARGET SEQUENCE
c32ff5
   
c32ff5
             value="${build.cache.dir}/cobertura"
c32ff5
             description="Directory where the Cobertura jar (and dependencies) is placed after it is auto-downloaded by the build" />
c32ff5
-  
c32ff5
-            value="${build.cache.dir}/ant-contrib"
c32ff5
-            description="Directory where the Ant-Contrib jar (and dependencies) is placed after it is auto-downloaded by the build" />
c32ff5
   
c32ff5
             value="${build.cache.dir}/pentaho"
c32ff5
             description="Directory where the Pentaho ant tasks jar (and dependencies) is placed after it is auto-downloaded by the build" />
c32ff5
@@ -325,68 +322,6 @@ TYPICAL TARGET SEQUENCE
c32ff5
   </path>
c32ff5
 
c32ff5
 
c32ff5
-  
c32ff5
-	    install-antcontrib
c32ff5
-	    
c32ff5
-	    (Fetches and) installs ant-contrib tasks.
c32ff5
-	    ====================================================================-->
c32ff5
-  
c32ff5
-          depends="antcontrib.download-check">
c32ff5
-    <taskdef resource="net/sf/antcontrib/antlib.xml">
c32ff5
-      <classpath>
c32ff5
-        <fileset dir="${antcontrib.build.cache.dir}">
c32ff5
-          <include name="*.jar" />
c32ff5
-        </fileset>
c32ff5
-      </classpath>
c32ff5
-    </taskdef>
c32ff5
-  </target>
c32ff5
-
c32ff5
-
c32ff5
-  
c32ff5
-	    antcontrib.download-check
c32ff5
-	    
c32ff5
-	    Fetches ant-contrib from sourceforge if it is not already present
c32ff5
-	    ====================================================================-->
c32ff5
-  <target name="antcontrib.download-check">
c32ff5
-    <condition property="antcontrib.available">
c32ff5
-      <and>
c32ff5
-        <available file="${antcontrib.build.cache.dir}" />
c32ff5
-        <available classname="net.sf.antcontrib.logic.IfTask">
c32ff5
-          <classpath>
c32ff5
-            <fileset dir="${antcontrib.build.cache.dir}">
c32ff5
-              <include name="*.jar" />
c32ff5
-            </fileset>
c32ff5
-          </classpath>
c32ff5
-        </available>
c32ff5
-      </and>
c32ff5
-    </condition>
c32ff5
-    <antcall target="antcontrib.download" />
c32ff5
-  </target>
c32ff5
-
c32ff5
-
c32ff5
-  
c32ff5
-	    antcontrib.download
c32ff5
-	    
c32ff5
-	    Fetches ant-contrib from sourceforge
c32ff5
-	    ====================================================================-->
c32ff5
-  <target name="antcontrib.download" unless="antcontrib.available">
c32ff5
-    <mkdir dir="${tmp.build.cache.dir}" />
c32ff5
-    
c32ff5
-         dest="${tmp.build.cache.dir}/antcontrib.zip"
c32ff5
-         usetimestamp="true" />
c32ff5
-    <unzip src="${tmp.build.cache.dir}/antcontrib.zip" dest="${tmp.build.cache.dir}">
c32ff5
-      <patternset>
c32ff5
-        <include name="**/*.jar" />
c32ff5
-      </patternset>
c32ff5
-    </unzip>
c32ff5
-    <copy todir="${antcontrib.build.cache.dir}">
c32ff5
-      <fileset dir="${tmp.build.cache.dir}/ant-contrib">
c32ff5
-        <include name="**/*.jar" />
c32ff5
-      </fileset>
c32ff5
-    </copy>
c32ff5
-  </target>
c32ff5
-
c32ff5
-
c32ff5
   
c32ff5
 	    init
c32ff5
 	    
c32ff5
@@ -445,7 +380,7 @@ TYPICAL TARGET SEQUENCE
c32ff5
     (Fetches and) installs the SVN ANT for use by this ant script
c32ff5
     ====================================================================-->
c32ff5
   
c32ff5
-          depends="install-antcontrib, svnant.download-check">
c32ff5
+          depends="svnant.download-check">
c32ff5
     <if>
c32ff5
       <istrue value="${svnant.isinstalled}" />
c32ff5
       <then>
c32ff5
@@ -491,58 +426,13 @@ TYPICAL TARGET SEQUENCE
c32ff5
   </target>
c32ff5
 
c32ff5
 
c32ff5
-  
c32ff5
-        set-build.id
c32ff5
-    
c32ff5
-        Sets a property build.id to the either "development" or the svn revision
c32ff5
-        if in release mode
c32ff5
-        ====================================================================-->
c32ff5
-  <target name="set-build.id" unless="build.id" depends="install-antcontrib">
c32ff5
-    <if>
c32ff5
-      <istrue value="${release}" />
c32ff5
-      <then>
c32ff5
-        <antcallback target="svn-revision" return="svn.revision" />
c32ff5
-        <property name="build.id" value="${svn.revision}" />
c32ff5
-      </then>
c32ff5
-      <else>
c32ff5
-        <property name="build.id" value="development" />
c32ff5
-      </else>
c32ff5
-    </if>
c32ff5
-  </target>
c32ff5
-
c32ff5
-  
c32ff5
-       version-properties: common Ant driven version file generation.  Projects that produce
c32ff5
-       a package or packages should run this target.  Projects that produce
c32ff5
-       jars only should NOT.
c32ff5
-   ===================================================================================-->
c32ff5
-  <target name="version-properties" depends="set-build.id">
c32ff5
-    <tstamp>
c32ff5
-      <format property="build.time" pattern="yyyy/MM/dd hh:mm aa"/>
c32ff5
-    </tstamp>
c32ff5
-    
c32ff5
-              file="version.properties" comment="Release Build version info">
c32ff5
-      <entry key="release.major.number" value="${release.major.number}" />
c32ff5
-      <entry key="release.minor.number" value="${release.minor.number}" />
c32ff5
-      <entry key="release.milestone.number" value="${release.milestone.number}" />
c32ff5
-      <entry key="release.candidate.token" value="${release.candidate.token}" />
c32ff5
-      <entry key="impl.vendor" value="${impl.vendor}" />
c32ff5
-      <entry key="impl.version" value="${release.major.number}.${release.minor.number}.${release.milestone.number}.${build.id}" />
c32ff5
-      <entry key="impl.title" value="${impl.title}" />
c32ff5
-      <entry key="buildDate" value="${build.time}"/>
c32ff5
-      <entry key="svn.revision" value="${build.id}"/>
c32ff5
-      <entry key="release.build.number" default="0" type="int" operation="+" value="1" pattern="0000"/>
c32ff5
-    </propertyfile>
c32ff5
-    <property file="${basedir}/version.properties"/>
c32ff5
-  </target>
c32ff5
-
c32ff5
-
c32ff5
   
c32ff5
 	    install-ivy
c32ff5
 	    
c32ff5
 	    (Fetches and) installs the IVY jar for use by this ant script
c32ff5
 	    ====================================================================-->
c32ff5
   
c32ff5
-          depends="install-antcontrib,ivy.download-check">
c32ff5
+          depends="ivy.download-check">
c32ff5
     <if>
c32ff5
       <istrue value="${ivy.isinstalled}" />
c32ff5
       <then>
c32ff5
@@ -602,7 +492,7 @@ TYPICAL TARGET SEQUENCE
c32ff5
 	    Verifies that there are no SNAPSHOT dependencies defined in the ivy xml.
c32ff5
 	    If there are SNAPSHOTS, fail the release build.
c32ff5
 	    ====================================================================-->
c32ff5
-  <target name="ivy.check-releasable" depends="install-ivy, install-antcontrib">
c32ff5
+  <target name="ivy.check-releasable" depends="install-ivy">
c32ff5
     <if>
c32ff5
       <istrue value="${release}" />
c32ff5
       <then>
c32ff5
@@ -769,7 +659,7 @@ TYPICAL TARGET SEQUENCE
c32ff5
 	    Publishes the jar file for this project to a Maven2 repository.
c32ff5
 	    ====================================================================-->
c32ff5
   
c32ff5
-          depends="install-antcontrib,create-pom,ivy.deliver">
c32ff5
+          depends="create-pom,ivy.deliver">
c32ff5
     <antcall target="maven-publish-dependencies">
c32ff5
       <param name="publish.groupId" value="${ivy.artifact.group}" />
c32ff5
       <param name="publish.artifactId" value="${ivy.artifact.id}" />
c32ff5
@@ -1038,12 +928,11 @@ TYPICAL TARGET SEQUENCE
c32ff5
 	      - compile.pre      : anything needed to prep for compile
c32ff5
 	      - compile.compile  : the actual compilation step
c32ff5
 	      - compile.src_copy : copying the source into the bin directory
c32ff5
-	      - compile.res_copy : copying the resources into the bin directory
c32ff5
 	      - compile.lic_copy : copying the license information into the bin directory
c32ff5
 	      - compile.post     : anything needed after the compile is done 
c32ff5
 	    ====================================================================-->
c32ff5
   
c32ff5
-          depends="init, compile.pre, compile.compile, compile.src_copy, compile.res_copy, compile.lic_copy, compile.post"
c32ff5
+          depends="init, compile.pre, compile.compile, compile.src_copy, compile.lic_copy, compile.post"
c32ff5
           description="Performs all the steps to prepare the bin directory with a complete compilation" />
c32ff5
 
c32ff5
 
c32ff5
@@ -1075,36 +964,6 @@ TYPICAL TARGET SEQUENCE
c32ff5
   </target>
c32ff5
 
c32ff5
 
c32ff5
-  
c32ff5
-	    compile.res_copy
c32ff5
-	    
c32ff5
-	    Copies any needed resources into the classes directory.  Will not
c32ff5
-	    duplicate copying of resources from src tree (handled by compile.src_copy
c32ff5
-	    if jar.include.source is set.
c32ff5
-	    ====================================================================-->
c32ff5
-  <target name="compile.res_copy" depends="install-antcontrib">
c32ff5
-    <if>
c32ff5
-      <available file="${res.dir}" />
c32ff5
-      <then>
c32ff5
-        <copy todir="${classes.dir}">
c32ff5
-          <fileset dir="${res.dir}" />
c32ff5
-        </copy>
c32ff5
-      </then>
c32ff5
-    </if>
c32ff5
-
c32ff5
-    <if>
c32ff5
-      <not>
c32ff5
-        <isset property="jar.include.source" />
c32ff5
-      </not>
c32ff5
-      <then>
c32ff5
-        <copy todir="${classes.dir}" flatten="false">
c32ff5
-          <fileset dir="${src.dir}" excludes="**/*.java" />
c32ff5
-        </copy>
c32ff5
-      </then>
c32ff5
-    </if>
c32ff5
-  </target>
c32ff5
-
c32ff5
-
c32ff5
   
c32ff5
 	    compile.src_copy
c32ff5
 	    
c32ff5
@@ -1151,20 +1010,19 @@ TYPICAL TARGET SEQUENCE
c32ff5
 	    
c32ff5
 	    Creates a jar file from the bin directory
c32ff5
 	    ====================================================================-->
c32ff5
-  <target name="jar" depends="compile,set-build.id,generate.manifest" description="Jars up the bin directory after a compile">
c32ff5
+  <target name="jar" depends="compile,generate.manifest" description="Jars up the bin directory after a compile">
c32ff5
     <jar destfile="${dist.dir}/${ivy.artifact.id}-${project.revision}.jar" manifest="${dist.manifest.file}">
c32ff5
       <fileset dir="${classes.dir}" />
c32ff5
     </jar>
c32ff5
   </target>
c32ff5
 
c32ff5
-
c32ff5
   
c32ff5
-	    generate.manifest
c32ff5
-	    
c32ff5
-	    Creates a new manifest file if one is not specified, or updates
c32ff5
-	    an existing manifest file if one is specified.
c32ff5
-	    ====================================================================-->
c32ff5
-  <target name="generate.manifest" depends="init,set-build.id">
c32ff5
+           generate.manifest
c32ff5
+           
c32ff5
+           Creates a new manifest file if one is not specified, or updates
c32ff5
+           an existing manifest file if one is specified.
c32ff5
+           ====================================================================-->
c32ff5
+  <target name="generate.manifest" depends="init">
c32ff5
     <delete file="${dist.manifest.file}" />
c32ff5
     <touch file="${dist.manifest.file}" />
c32ff5
     <copy file="${manifest.file}" tofile="${dist.manifest.file}" overwrite="true" failonerror="false" />
c32ff5
@@ -1178,6 +1036,7 @@ TYPICAL TARGET SEQUENCE
c32ff5
   </target>
c32ff5
 
c32ff5
 
c32ff5
+
c32ff5
   
c32ff5
 	    dist-source
c32ff5
 	    
c32ff5
@@ -1648,4 +1507,4 @@ TYPICAL TARGET SEQUENCE
c32ff5
     </dot-classpath>
c32ff5
   </target>
c32ff5
 
c32ff5
-</project>
c32ff5
\ No newline at end of file
c32ff5
+</project>