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