(no commit message)
authorErik Brakkee <erik@brakkee.org>
Sat, 2 Sep 2006 20:34:17 +0000 (20:34 +0000)
committerErik Brakkee <erik@brakkee.org>
Sat, 2 Sep 2006 20:34:17 +0000 (20:34 +0000)
19 files changed:
build/delegator.xml [deleted file]
build/header.xml [deleted file]
build/lib/ant/ant-contrib-1.0b2/README.txt [deleted file]
build/lib/ant/ant-contrib-1.0b2/ant-contrib.jar [deleted file]
build/lib/ant/ant-dependencies.jar [deleted file]
build/lib/ant/doccheck1.2b2/doccheck.jar [deleted file]
build/lib/ant/pdfdoclet-1.0.2-all.jar [deleted file]
build/lib/special/hibernate/antlr-2.7.5H3.jar [deleted file]
build/lib/special/hibernate/asm-attrs.jar [deleted file]
build/lib/special/hibernate/asm.jar [deleted file]
build/lib/special/jaf-1.0.2/activation.jar [deleted file]
build/lib/special/javamail-1.3.3_01/mail.jar [deleted file]
build/lib/special/jfreechart-1.0.1/jcommon-1.0.0.jar [deleted file]
build/lib/special/jfreechart-1.0.1/jfreechart-1.0.1.jar [deleted file]
build/lib/special/test/jdbc2_0-stdext.jar [deleted file]
build/lib/special/test/jdbc2_0-stdext.licence.txt [deleted file]
build/lib/special/test/jta.jar [deleted file]
build/lib/special/test/jta.licence.txt [deleted file]
build/trailer.xml [deleted file]

diff --git a/build/delegator.xml b/build/delegator.xml
deleted file mode 100644 (file)
index e819296..0000000
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-    <!--  =============================================================
-      This build file provides delegation to a number of other
-      projects. The projects must be defined in a projects 
-      property which contains a comma-separated list of directories
-      to which we must delegate. 
-      This build file should be included from another build file 
-      which needs to delegate to other targets. 
-      ================================================================= -->
-    
-       <!--  ================================================================
-      Delegates the build to a number of other projects. 
-      Two properties must be set for this to work: 
-      - projects: a comma separated list of directories to execute the
-        build in. 
-      - targets: List of targets (separated by commas) to execute.
-      ================================================================ -->
-    <target name="delegator" >
-           <for list="${targets}" param="target">
-               <sequential> 
-                   <for list="${projects}" param="proj">
-                       <sequential>
-                           <echo>
-=====================================================================
-Executing target '@{target}' for @{proj}
-=====================================================================
-                           </echo>
-                           <ant dir="@{proj}" 
-                             inheritAll="false" 
-                             target="@{target}"/>
-                    </sequential>
-                </for>
-            </sequential>
-        </for>
-       </target>
-
-       
-       
-       <target name="info">
-           <echo>Delegator build file for delegating a task
-                 to several other build files. </echo>
-       </target>
-       
-       <target name="init_delegator" depends="init_directory_properties,import_header">
-       </target>
-       
-       
-       <target name="deps" depends="init_delegator" description="download dependencies">
-               <antcall target="delegator">
-                       <param name="targets" value="deps"/>
-               </antcall>
-       </target>
-       
-       <target name="clean-deps" depends="init_delegator" description="download dependencies">
-               <antcall target="delegator">
-                       <param name="targets" value="clean-deps"/>
-               </antcall>
-       </target>
-       
-       <target name="clean" depends="init_delegator" description="Clean all targets">
-               <antcall target="delegator">
-                       <param name="targets" value="clean"/>
-               </antcall>
-       </target>
-       
-       <target name="compile" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="compile,dist-lite-product"/>
-               </antcall>
-       </target>
-
-    <target name="schemaexport" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="schemaexport"/>
-               </antcall>
-       </target>
-       
-       <target name="jar" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="jar"/>
-               </antcall>
-       </target>
-       
-       <target name="javadoc" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="javadoc"/>
-               </antcall>
-       </target>
-       
-       <target name="testjavadoc" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="testjavadoc"/>
-               </antcall>
-       </target>
-       
-       <target name="pdfdoc" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="pdfdoc"/>
-               </antcall>
-       </target>
-       
-       <target name="doccheck" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="doccheck"/>
-               </antcall>
-       </target>
-       
-       <target name="clean-dist" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="clean-dist"/>
-               </antcall>
-       </target>
-       
-       <target name="dist-lite" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist-lite"/>
-               </antcall>
-       </target>
-       
-       <target name="dist-javadoc" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist-javadoc"/>
-               </antcall>
-       </target>
-               
-       <target name="dist-lite-product" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist-lite-product"/>
-               </antcall>
-       </target>
-       
-       <target name="dist-lite-test" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist-lite-test"/>
-               </antcall>
-       </target>
-       
-       
-       <target name="dist" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist"/>
-               </antcall>
-       </target>
-
-       <target name="checkstyle" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="checkstyle"/>
-               </antcall>
-       </target>
-       
-       <target name="format" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="format"/>
-               </antcall>
-       </target>
-       
-       <target name="simian" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="simian"/>
-               </antcall>
-       </target>
-       
-       <target name="macker" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="macker"/>
-               </antcall>
-       </target>
-
-    <target name="testclasses" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist-lite-product,dist-lite-test"/>
-               </antcall>
-       </target>
-       
-       <target name="test" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="dist-lite-product,dist-lite-test,test"/>
-               </antcall>
-       </target>
-       
-       <target name="junit-reports" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="junit-reports,dist-lite-product,dist-lite-test"/>
-               </antcall>
-       </target>
-       
-       <target name="jcov-reports" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="jcov-reports,dist-lite-product,dist-lite-test"/>
-               </antcall>
-       </target>
-       
-       <target name="reports" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="reports,dist-lite-product,dist-lite-test"/>
-               </antcall>
-       </target>
-       
-       <target name="forrest" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="forrest"/>
-               </antcall>
-       </target>
-       
-       
-       <target name="schemaupdate" depends="init_delegator">
-               <antcall target="delegator">
-                       <param name="targets" value="schemaupdate"/>
-               </antcall>
-       </target>
-       
-       
diff --git a/build/header.xml b/build/header.xml
deleted file mode 100644 (file)
index e284f44..0000000
+++ /dev/null
@@ -1,724 +0,0 @@
-<!-- PROPERTIES -->
-
-<target name="echoUserPropertiesFileFound" if="user.properties.found">
-  <echo>Using properties file ${user.property.file}</echo>
-</target>
-    
-<target name="echoUserPropertiesFileNotFound" unless="user.properties.found">
-  <echo>Properties file ${user.property.file} not found, reverting to defaults</echo>
-</target>
-
-
-<property name="project.home" value=".."/>
-<property name="build.dir" value="${project.home}/build"/>
-<property name="lib.dir" value="${project.home}/lib"/>
-<property environment="env"/>
-
-<target name="download.dep">
-  <if>
-    <isset property="proxyhost"/>
-    <then>
-      <setproxy proxyhost="${proxyhost}" proxyport="${proxyport}"/>
-    </then>
-  </if>
-  <if>
-    <isset property="artifact"/>
-    <then>
-      <echo>Getting dependence ${group}/${artifact}/${version}</echo>
-      <dependencies verbose="true" fileSetId="my.deps"> 
-       <dependency group="${group}" artifact="${artifact}" version="${version}"/>
-      </dependencies> 
-      <copy todir="${download.dir}" flatten="yes">
-       <fileset refid="my.deps"/>
-      </copy>
-    </then>
-    <else>
-      <echo>Getting dependence ${group}/${version}</echo>
-      <dependencies verbose="true" fileSetId="my.deps"> 
-       <dependency group="${group}" version="${version}"/>
-      </dependencies> 
-      <copy todir="${download.dir}" flatten="yes">
-       <fileset refid="my.deps"/>
-      </copy>
-    </else>
-  </if>
-</target>
-
-<!-- LOG4j -->    
-<target name="log4j.d">
-  <antcall target="download.dep">
-    <param name="group" value="log4j"/>
-    <param name="version" value="1.2.9"/>
-  </antcall>
-</target>
-
-<target name="commons-beanutils.d">
-  <antcall target="download.dep">
-    <param name="group" value="commons-beanutils"/>
-    <param name="version" value="1.7.0"/>
-  </antcall>
-</target>
-
-<target name="commons-collections.d">
-  <antcall target="download.dep">
-    <param name="group" value="commons-collections"/>
-    <param name="version" value="3.1"/>
-  </antcall>
-</target>
-
-
-<target name="commons-logging.d">
-  <antcall target="download.dep">
-    <param name="group" value="commons-logging"/>
-    <param name="artifact" value="commons-logging"/>
-    <param name="version" value="1.0.2"/>
-  </antcall>
-</target>
-
-<target name="commons-codec.d">
-  <antcall target="download.dep">
-    <param name="group" value="commons-codec"/>
-    <param name="version" value="1.3"/>
-  </antcall>
-</target>
-
-<target name="commons-email.d">
-  <antcall target="download.dep">
-    <param name="group" value="commons-email"/>
-    <param name="version" value="1.0"/>
-  </antcall>
-</target>
-
-<target name="servletapi.d">
-  <antcall target="download.dep">
-    <param name="group" value="servletapi"/>
-    <param name="version" value="2.4"/>
-  </antcall>
-</target>
-
-<target name="jstl.d">
-  <antcall target="download.dep">
-    <param name="group" value="jstl"/>
-    <param name="version" value="1.1.2"/>
-  </antcall>
-  <antcall target="download.dep">
-    <param name="group" value="taglibs"/>
-       <param name="artifact" value="standard"/>
-    <param name="version" value="1.1.2"/>
-  </antcall>
-</target>
-
-
-
-<target name="quartz.d">
-  <antcall target="download.dep">
-    <param name="group" value="quartz"/>
-    <param name="version" value="1.5.1"/>
-  </antcall>
-</target>
-
-
-
-<target name="logging.d" depends="log4j.d,commons-logging.d">
-</target>
-
-<target name="dom4j.d">
-  <antcall target="download.dep">
-    <param name="group" value="dom4j"/>
-    <param name="version" value="1.6"/>
-  </antcall>
-  <antcall target="download.dep">
-    <param name="group" value="jaxen"/>
-    <param name="version" value="1.1-beta-4"/>
-  </antcall>
-</target>
-
-<target name="jfreechart.d">
-  <copy todir="${download.dir}">
-    <fileset dir="${special.lib.dir}/jfreechart-1.0.1">
-      <include name="*.jar"/>
-    </fileset>
-  </copy>
-</target>
-
-<target name="ehcache.d">
-  <antcall target="download.dep">
-    <param name="group" value="ehcache"/>
-    <param name="version" value="1.1"/>
-  </antcall>
-</target>
-
-<target name="xerces.d">
-  <antcall target="download.dep">
-    <param name="group" value="xerces"/>
-    <param name="version" value="2.4.0"/>
-  </antcall>
-</target>
-
-<target name="oro.d">
-  <antcall target="download.dep">
-    <param name="group" value="oro"/>
-    <param name="version" value="2.0.6"/>
-  </antcall>
-</target>
-
-<target name="cglib.d">
-  <antcall target="download.dep">
-    <param name="group" value="cglib"/>
-    <param name="version" value="2.1"/>
-  </antcall>
-</target>
-
-<target name="hibernate.d" depends="cglib.d,oro.d">
-  <antcall target="download.dep">
-    <param name="group" value="hibernate"/>
-    <param name="version" value="3.0.5"/>
-  </antcall>
-</target>
-
-<target name="hibernate.standalone.d" depends="hibernate.d">
-  <copy todir="${download.dir}">
-    <fileset dir="${special.lib.dir}/hibernate">
-       <include name="*.jar"/>
-    </fileset>
-  </copy>
-</target>
-
-<target name="spring.d">
-  <antcall target="download.dep">
-    <param name="group" value="springframework"/>
-    <param name="artifact" value="spring"/>
-    <param name="version" value="1.2.5"/>
-  </antcall>
-</target>
-
-<target name="activation.d">
-  <copy todir="${download.dir}">
-    <fileset dir="${special.lib.dir}/jaf-1.0.2">
-       <include name="*.jar"/>
-    </fileset>
-  </copy>
-</target>
-
-<target name="mail.d" depends="activation.d">
-  <copy todir="${download.dir}">
-    <fileset dir="${special.lib.dir}/javamail-1.3.3_01">
-       <include name="*.jar"/>
-    </fileset>
-  </copy>
-</target>
-
-
-
-<target name="httpclient.d">
-  <antcall target="download.dep">
-    <param name="group" value="commons-httpclient"/>
-    <param name="version" value="3.0"/>
-  </antcall>
-</target>
-
-<target name="jtidy.d">
-  <antcall target="download.dep">
-    <param name="group" value="jtidy"/>
-    <param name="version" value="4aug2000r7-dev"/>
-  </antcall>
-</target>
-
-<property name="support.dist.dir" value="${lib.dir}/wamblee/support"/>
-<target name="wamblee.support.d">
-  <copy todir="${download.dir}">
-    <fileset dir="${support.dist.dir}">
-      <include name="wamblee-support.jar"/>
-    </fileset>
-  </copy>
-</target>
-<target name="wamblee.support.test.d">
-  <copy todir="${download.dir}">
-    <fileset dir="${support.dist.dir}">
-      <include name="wamblee-support-test.jar"/>
-    </fileset>
-  </copy>
-</target>
-
-
-<target name="junit.d">
-  <antcall target="download.dep">
-    <param name="group" value="junit"/>
-    <param name="version" value="3.8.1"/>
-  </antcall>
-  <copy todir="${download.dir}">
-    <fileset dir="${special.lib.dir}/test">
-       <include name="*.jar"/>
-    </fileset>
-  </copy>
-</target>
-
-<target name="emma.d">
-  <antcall target="download.dep">
-    <param name="group" value="emma"/>
-    <param name="artifact" value="emma"/>
-    <param name="version" value="2.0.5312"/>
-  </antcall>
-  <antcall target="download.dep">
-    <param name="group" value="emma"/>
-    <param name="artifact" value="emma_ant"/>
-    <param name="version" value="2.0.5312"/>
-  </antcall>
-</target>
-
-<target name="jmock.d">
-  <antcall target="download.dep">
-    <param name="group" value="jmock"/>
-    <param name="artifact" value="jmock"/>
-    <param name="version" value="1.0.1"/>
-  </antcall>
-  <antcall target="download.dep">
-    <param name="group" value="jmock"/>
-    <param name="artifact" value="jmock-cglib"/>
-    <param name="version" value="1.0.1"/>
-  </antcall>
-</target>
-
-<target name="dbunit.d">
-  <antcall target="download.dep">
-    <param name="group" value="dbunit"/>
-    <param name="version" value="2.1"/>
-  </antcall>
-</target>
-
-
-<target name="antlr.d">
-  <antcall target="download.dep">
-    <param name="group" value="antlr"/>
-    <param name="version" value="2.7.2"/>
-  </antcall>
-</target>
-
-<target name="checkstyle.d" depends="antlr.d,commons-beanutils.d,commons-logging.d,commons-collections.d">
-  <antcall target="download.dep">
-    <param name="group" value="checkstyle"/>
-    <param name="version" value="4.1"/>
-  </antcall>
-</target>
-
-<!-- common test dependencies for all test code --> 
-<target name="test.d" depends="junit.d,jmock.d,dbunit.d,emma.d">
-</target>
-
-<!-- downloaded dependencies for ant tasks --> 
-<target name="ant.d" depends="checkstyle.d">
-</target>
-
-
-
- <target name="import_header" unless="build_header_included">
-    <property name="ant.lib.dir" value="${build.dir}/lib/ant"/>
-    <property name="test.lib.dir" value="lib/test"/>
-    <property name="special.lib.dir" value="${build.dir}/lib/special"/>
-       <property name="ant.downloaded.lib.dir" value="${build.dir}/lib/ant/downloaded"/>
-
-       
-    <!-- ========================================================================================
-         Ant task defs
-         ======================================================================================== -->
-    <!-- ant-contrib integration --> 
-    <property name="ant.contrib.home" value="${ant.lib.dir}/ant-contrib-1.0b2"/>
-    <taskdef resource="net/sf/antcontrib/antlib.xml">
-      <classpath>
-        <pathelement location="${ant.contrib.home}/ant-contrib.jar" />
-      </classpath>
-    </taskdef>
-    
-    <!-- taskdef for ant-dependencies task --> 
-    <taskdef name="dependencies" classpath="${ant.lib.dir}/ant-dependencies.jar" 
-      classname="org.apache.tools.ant.taskdefs.optional.dependencies.Dependencies"/>
-  
-    <!-- Emma integration --> 
-       <if>
-         <available file="${test.lib.dir}"/>
-         <then>
-        <path id="emma.lib">
-          <fileset dir="${test.lib.dir}" includes="emma*.jar"/>
-        </path>
-        <taskdef resource="emma_ant.properties" classpathref="emma.lib" />
-        <property name="emma.enabled" value="false"/>
-         </then>
-    </if>
-    
-    <!-- checkstyle -->
-    <property name="checkstyle.home" value="${ant.downloaded.lib.dir}"/>
-    <taskdef resource="checkstyletask.properties">
-      <classpath>
-        <fileset dir="${checkstyle.home}">
-         <include name="*.jar"/>
-       </fileset>
-      </classpath>
-    </taskdef>
-    <property name="checkstyle.rules" value="style.xml"/>
-    <property name="checkstyle.test.rules" value="test-style.xml"/>
-    
-             
-    <!-- jalopy -->
-    <!-- TMP download this dependence as well 
-    <property name="jalopy.home" value="${lib.dir}/jalopy-ant-0.6.2"/>
-    <property name="jalopy.rules" value="${build.dir}/formatting-rules.xml"/>
-    <taskdef name="jalopy"
-         classname="de.hunsicker.jalopy.plugin.ant.AntPlugin">
-      <classpath>
-        <fileset dir="${jalopy.home}">
-          <include name="*.jar" />
-        </fileset>
-      </classpath>
-    </taskdef>
-    -->
-  
-    <!-- simian integration -->
-    <!-- TMP download this dependence as well 
-    <property name="simian.home" value="${lib.dir}/simian"/>
-    <taskdef resource="simiantask.properties" classpath="${simian.home}/simian.jar"/>
-    --> 
-    
-    <!-- macker integration -->
-    <!-- TMP download this dependence as well 
-    <property name="macker.home" value="${lib.dir}/macker-0.4.2"/>
-    <path id="macker.path">
-         <fileset dir="${macker.home}">
-           <include name="**/*.jar"/>
-         </fileset>
-    </path>
-    <taskdef name="macker"
-      classname="net.innig.macker.ant.MackerAntTask"
-      classpathref="macker.path"/>
-
-    --> 
-    
-    <!-- ========================================================================================
-         Locate user properties to (optionally) override defaults
-         ======================================================================================== -->
-    <!--
-      Give user a chance to override without editing this file
-      (and without typing -D each time they run it).
-
-      The following properties must be defined in this file:
-      - jcoverage.home: root of the jcoverage installation. 
-      - jalopy.home: root of the jalopy installation. 
-    -->
-    <property name="user.property.file" value="${user.home}/wamblee.properties"/>
-    <available file="${user.property.file}" property="user.properties.found"/>
-    <property file="${user.property.file}"/>
-    
-    <antcall target="echoUserPropertiesFileFound"/>
-    <antcall target="echoUserPropertiesFileNotFound"/>
-
-    <!-- project properties defaults, can be overriden in the user's properties file -->
-    
-      <!--  The project.home property can also be overriden in a build.xml
-            in case the source is in a subdirectory and not necessarily
-            in the top-level directory --> 
-   
-  
-       <if>
-         <isset property="webroot.dir"/>
-         <then>
-           <property name="external.lib.dir" value="${webroot.dir}/WEB-INF/lib"/>
-         </then>
-         <else>
-           <property name="external.lib.dir" value="lib/external"/>
-         </else>
-       </if>
-   
-    <property name="build.properties.dir" value="${project.home}" />
-    <property name="build.properties.name" value="build.properties" />
-    
-    <mkdir dir="${external.lib.dir}"/>
-    <mkdir dir="${test.lib.dir}"/>
-    
-    <property name="conf.dir" value="conf"/>
-    <property name="log4j.properties.dir" value="${conf.dir}/properties"/>
-    
-    <!-- Compilation properties -->
-    <property name="javac.debug" value="true"/>
-    <property name="javac.debug.level" value="lines,vars,source"/>
-    <property name="javac.source" value="1.5"/>
-
-    <!-- ========================================================================================
-         Standard path definitions to be used with all projects 
-         ======================================================================================= -->
-    <property name="xmlschemas.dir" value="${conf.dir}/schemas"/>
-    <path id="xmlschemas.path">
-      <pathelement location="${xmlschemas.dir}"/>
-    </path>
-
-    <!-- ========================================================================================
-         Path definitions for external libraries.
-         ======================================================================================== -->
-    <!-- Ignore system classpath! -->
-    <property name="build.sysclasspath" value="ignore" />
-
-    <!-- JUnit -->
-    <property name="junit.halt.on.failure" value="false"/>
-    <property name="unitreport" value="cl-unit.xml"/>
-    
-    <!-- DocCheck path -->
-    <property name="doccheck.home" value="${ant.lib.dir}/doccheck1.2b2/doccheck.jar"/>
-    <path id="doccheck.path">
-      <pathelement location="${doccheck.home}"/>
-    </path>
-    
-    <!-- PdfDoclet path -->
-    <property name="pdfdoclet.home" value="${ant.lib.dir}/pdfdoclet-1.0.2-all.jar"/>
-    <path id="pdfdoclet.path">
-      <pathelement location="${pdfdoclet.home}"/>
-    </path>
-        
-    <!-- Hibernate paths --> 
-    <!--  name of the file in the source directory containing
-          the names of hibernate files to look at in the correct order --> 
-    <property name="hibernate.home" value="${lib.dir}/hibernate-3.0"/>
-    <path id="hibernate.basic.path">
-      <fileset dir="${hibernate.home}">
-        <include name="*.jar"/>
-      </fileset>
-      <path refid="xerces.path"/>
-      <path refid="dom4j.path"/>
-    </path>
-    <path id="hibernate.appserver.path"> 
-      <path refid="hibernate.basic.path"/>
-      <fileset dir="${hibernate.home}/appserver">
-        <include name="*.jar"/>
-      </fileset>
-    </path>
-    <path id="hibernate.standalone.path"> 
-      <path refid="hibernate.basic.path"/>
-      <fileset dir="${hibernate.home}/standalone">
-        <include name="*.jar"/>
-      </fileset>
-    </path>
-
-    <!-- Commented the inclusion of a system-wide path in the user's environment into a 
-         classpath. System wide classpaths should not be used. -->
-    <!-- property name="classpath_id" value="build.path" / -->
-    <!-- property name="classpath" refid="${classpath_id}"/ -->
-    <property name="classpath" value=""/>
-    
-    
-    <!-- ========================================================================================
-         Database settings
-         ======================================================================================== -->
-    <property name="database" value="Derby"/>
-    
-  
-   
-    <!-- ========================================================================================
-         Information
-         ======================================================================================== -->
-    <echo level="debug" message="project.home=${project.home}"/>
-    <echo level="debug" message="project.libs=${project.libs}"/>
-    <echo level="debug" message="classpath=${classpath}"/>
-
-
-    <!-- ========================================================================================
-         Included marker
-         ======================================================================================== -->
-    <property name="build_header_included" value="true" />
-</target>
-      
-<!--  =================================================================
-     Sets up the directory definitions for the module
-     ================================================================= -->
-<target name="init_directory_properties" depends="import_header">
-       <!-- Set module properties for this build -->
-
-       <property name="module.home" value="." />
-       
-       <!--  Replace the dash by a / to create a relative directory 
-             from a module name --> 
-       <propertyregex property="module.reldir" 
-                      input="${module.name}"
-                      regexp="-"
-                      replace="/"
-                      global="true"
-                      defaultValue="${module.name}"/>
-       <!-- property name="module.build.dir"
-               value="${build.dir}/${module.reldir}" / -->
-    <property name="module.build.dir" value="build"/>
-       <property name="module.api.forrest.dir" value="${forrest.build.site.dir}/api/${module.name}" />
-       <if>
-         <isset property="webroot.dir"/>
-         <then>
-           <property name="module.classes.dir" value="${webroot.dir}/WEB-INF/classes" />
-         </then>
-         <else>
-           <property name="module.classes.dir" value="${module.build.dir}/bin" />
-         </else>
-       </if>
-       
-       <property name="module.testclasses.dir" value="${module.build.dir}/testbin" />
-       <!-- Directory where generated SQL will be put by the schema export-->
-       <property name="module.sql.dir" value="${module.build.dir}/sql" />
-
-
-       <property name="module.jcovclasses.dir"
-               value="${module.build.dir}/testjcov" />
-       <property name="module.jars.dir" value="${module.build.dir}/jars" />
-       <property name="module.jar.file"
-               value="${module.jars.dir}/${module.jar.name}" />
-       <property name="module.source.dir" value="${module.home}/src" />
-       <property name="module.forrest.src.dir" value="${module.home}/xdocs" />
-       <property name="module.ejbsource.dir" value="${module.home}/ejbsrc" />
-       <property name="module.test.dir" value="${module.home}/test" />
-       <property name="module.testjar.name"
-               value="${module.name}-test.jar" />
-        <property name="module.testresourcesjar.name"
-               value="${module.name}-test-resources.jar" />
-       <property name="module.resource.dir"
-               value="${module.home}/resources" />
-       <property name="module.testresource.dir"
-               value="${module.resource.dir}/test" />
-    <property name="module.testoutput.dir"
-        value="${module.resource.dir}/testoutput"/>
-       <property name="module.report.dir"
-               value="${module.build.dir}/testresults" />
-        <property name="module.emmareport.dir"
-               value="${module.report.dir}/html/emma"/>
-       <property name="module.docbase.dir"
-               value="${module.build.dir}/docs" />
-       <property name="module.javadoc.dir"
-               value="${module.docbase.dir}/api" />
-       <property name="module.javadocjar.name"
-               value="${module.name}-doc.jar" />
-       <property name="module.testjavadocjar.name"
-               value="${module.name}-test-doc.jar" />
-       <property name="module.testjavadoc.dir"
-               value="${module.docbase.dir}/testapi" />
-       <property name="module.pdfdoc.dir"
-               value="${module.docbase.dir}/pdf" />
-       <property name="module.doccheck.dir"
-               value="${module.docbase.dir}/doccheck" />
-       <property name="module.checkstyle.dir"
-           value="${module.docbase.dir}/checkstyle" />
-       <property name="module.jar.name" value="${module.name}.jar" />
-       
-       <!--  Replace the dash by a / to create a relative directory 
-             from a module name --> 
-       <property name="module.dist.dir" value="${lib.dir}/${module.reldir}" />
-</target>
-
-<!-- ============================================================================
-  Initialize the environment for other tasks. Normally, every task which
-  does not depend on any other task should at least depend on init. 
-  ============================================================================ -->
-  
-  <target name="help" depends="import_header">
-    <antcall target="help-within-module"/>
-    <antcall target="help-outside-module"/>
-  </target>
-  
-  <target name="help-within-module" depends="init_directory_properties" if="module.name">
-    <antcall target="help-impl"/>
-  </target>
-  
-  <target name="help-outside-module" unless="module.name">
-    <antcall target="help-outside-module-2">
-      <param name="module.name" value="MODULE_NAME"/>
-    </antcall>
-  </target>
-  
-  <target name="help-outside-module-2" depends="init_directory_properties">
-    <antcall target="help-impl"/>
-  </target>
-  
-  
-  <target name="help-impl">
-    <echo>
-    
-      Preparation:
-      
-      To execute with a specific proxy host and port, start ant with the 
-      command-line options   -Dproxyhost=hostname -Dproxyport=portnumber.
-      
-      deps:          Download dependencies, this is necessary for using 
-                     any of the build targets.
-      clean-deps:    Remove downloaded dependencies. 
-      
-      General build targets: 
-      
-      clean:         Cleans up all build results (excluding the dist location).
-      compile:       Compiles all java clasess. Target dir ${module.classes.dir} 
-      jar:           Creates a jar file. Target: ${module.jar.file} 
-      dist:          Makes the build results available for other modules Target: ${module.dist.dir}. 
-      dist-lite:     Similar to dist but only creates the jars for code and test code. Useful
-                     during development because it takes much less time than the dist
-                    target
-      clean-dist:    Cleans up the dist directories. 
-      
-      Test: 
-      
-      test:          Compile and run tests. 
-      junit-reports: As test but generates a test report. Target: ${module.report.dir}(/html/unit) 
-      reports:       As junit-reports but also generates an emma test coverage
-                     report
-                    
-      Note: By specifying -Dtest=TestCaseName on the ant command line, 
-      only the specified testcase will be run. 
-      
-      Emma can also be executed manually:
-            
-        emma:          Overwrites the production classes by their instrumented versions.
-        emma-reports:  Generates emma code coverage reports after running the
-                       testcases with instrumented classes.
-      
-      Javadoc targets: 
-      
-      javadoc:       Generates javadoc. Target: ${module.javadoc.dir} 
-      doccheck:      Checks documentation. Target: ${module.doccheck.dir}
-         
-         Forrest:
-         
-         forrest:       Generates project docs using forrest. 
-      
-      Code analysis: 
-      
-      checkstyle:    Checks the style of the code. 
-      format:        Formats to the code in accordance with the checkstyle rules.
-      simian:        Analyse similarities in the code.
-         
-         Building a web application: 
-         
-         To build a web application archive (WAR) you must set the property
-         webroot.dir to the value of the directory which is the root of your
-         web application. This must be done before the header.xl is 
-         sourced. The build support will then make sure that 
-         classes and libs are put in the correct directories below 
-         ${webroot.dir}/WEB-INF, and it will build a web archive. 
-      
-      Database targets:  ** database targets are not functional yet **
-      
-      For all targets below the database is configured using 
-      hibernate.properties (hibernate.dialect property) and 
-      the JDBC connection properties in database.properties. 
-      
-      The schemaexport and schemaupdate targets require the 
-      setting of a property named hibernate.filelist. The value
-      of the property must be the fully qualified class name of
-      a concrete subclass of ConfigFileList which has a default 
-      public constructor and defines the Hibernate mapping files that
-      can be used. 
-      
-      schemaexport:  Generate SQL code to create the required database structures.
-      
-      startdb:       Startup a lightweight database. The database
-      type to start is obtained from the currently
-      configured database. 
-      
-      schemaupdate:  Populate the database with a schema by running
-      Hibernate schemaupdate against the currently
-      configured database.  
-    </echo>
-  </target>
-  
-  
diff --git a/build/lib/ant/ant-contrib-1.0b2/README.txt b/build/lib/ant/ant-contrib-1.0b2/README.txt
deleted file mode 100644 (file)
index 2e97de8..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-Ant-Contrib library
-
-This library is for contributed Ant tasks that have
-not been approved for inclusion into the ant core or
-optional library.
-
-Requirements
--------------------------
-Runtime:
-       Requires APACHE Ant Version 1.5 or above.  Note, that output
-       handlers on the ForEach task will not properly report the
-       task which is outputting the message unless you are using
-       Ant version 1.5.2 or greater.
-
-       In addition, the <for> task will not work on versions prior
-       to Ant 1.6
-
-Compilation:
-       Requires Ant Version 1.6 or greater to compile and build the
-       package.
-
-
-Inclusion in your project
--------------------------
-       The easiest way to use the tasks is to use
-
-<taskdef resource="net/sf/antcontrib/antlib.xml">
-  <classpath>
-    <pathelement location="your/path/to/ant-contrib-${version}.jar" />
-  </classpath>
-</taskdef>
-
-in your build file.  If the jar file is on your CLASSPATH or in
-ANT_HOME/lib you can even simplify this to read
-
-<taskdef resource="net/sf/antcontrib/antlib.xml" />
-
-For projects which will run under 1.5 versions, you would
-use the .properties file instead of the antlib.xml file:
-
-<taskdef resource="net/sf/antcontrib/antcontrib.properties">
-  <classpath>
-    <pathelement location="your/path/to/ant-contrib.jar" />
-  </classpath>
-</taskdef>
-
diff --git a/build/lib/ant/ant-contrib-1.0b2/ant-contrib.jar b/build/lib/ant/ant-contrib-1.0b2/ant-contrib.jar
deleted file mode 100644 (file)
index ea817cd..0000000
Binary files a/build/lib/ant/ant-contrib-1.0b2/ant-contrib.jar and /dev/null differ
diff --git a/build/lib/ant/ant-dependencies.jar b/build/lib/ant/ant-dependencies.jar
deleted file mode 100644 (file)
index 83c7abf..0000000
Binary files a/build/lib/ant/ant-dependencies.jar and /dev/null differ
diff --git a/build/lib/ant/doccheck1.2b2/doccheck.jar b/build/lib/ant/doccheck1.2b2/doccheck.jar
deleted file mode 100644 (file)
index 0b83105..0000000
Binary files a/build/lib/ant/doccheck1.2b2/doccheck.jar and /dev/null differ
diff --git a/build/lib/ant/pdfdoclet-1.0.2-all.jar b/build/lib/ant/pdfdoclet-1.0.2-all.jar
deleted file mode 100644 (file)
index 2a20915..0000000
Binary files a/build/lib/ant/pdfdoclet-1.0.2-all.jar and /dev/null differ
diff --git a/build/lib/special/hibernate/antlr-2.7.5H3.jar b/build/lib/special/hibernate/antlr-2.7.5H3.jar
deleted file mode 100644 (file)
index d02328e..0000000
Binary files a/build/lib/special/hibernate/antlr-2.7.5H3.jar and /dev/null differ
diff --git a/build/lib/special/hibernate/asm-attrs.jar b/build/lib/special/hibernate/asm-attrs.jar
deleted file mode 100644 (file)
index f07bcb2..0000000
Binary files a/build/lib/special/hibernate/asm-attrs.jar and /dev/null differ
diff --git a/build/lib/special/hibernate/asm.jar b/build/lib/special/hibernate/asm.jar
deleted file mode 100644 (file)
index ee0c7cc..0000000
Binary files a/build/lib/special/hibernate/asm.jar and /dev/null differ
diff --git a/build/lib/special/jaf-1.0.2/activation.jar b/build/lib/special/jaf-1.0.2/activation.jar
deleted file mode 100644 (file)
index ab80b38..0000000
Binary files a/build/lib/special/jaf-1.0.2/activation.jar and /dev/null differ
diff --git a/build/lib/special/javamail-1.3.3_01/mail.jar b/build/lib/special/javamail-1.3.3_01/mail.jar
deleted file mode 100644 (file)
index 97fad98..0000000
Binary files a/build/lib/special/javamail-1.3.3_01/mail.jar and /dev/null differ
diff --git a/build/lib/special/jfreechart-1.0.1/jcommon-1.0.0.jar b/build/lib/special/jfreechart-1.0.1/jcommon-1.0.0.jar
deleted file mode 100644 (file)
index c5d23f4..0000000
Binary files a/build/lib/special/jfreechart-1.0.1/jcommon-1.0.0.jar and /dev/null differ
diff --git a/build/lib/special/jfreechart-1.0.1/jfreechart-1.0.1.jar b/build/lib/special/jfreechart-1.0.1/jfreechart-1.0.1.jar
deleted file mode 100644 (file)
index 6a01524..0000000
Binary files a/build/lib/special/jfreechart-1.0.1/jfreechart-1.0.1.jar and /dev/null differ
diff --git a/build/lib/special/test/jdbc2_0-stdext.jar b/build/lib/special/test/jdbc2_0-stdext.jar
deleted file mode 100644 (file)
index ddafa13..0000000
Binary files a/build/lib/special/test/jdbc2_0-stdext.jar and /dev/null differ
diff --git a/build/lib/special/test/jdbc2_0-stdext.licence.txt b/build/lib/special/test/jdbc2_0-stdext.licence.txt
deleted file mode 100644 (file)
index b4fc38a..0000000
+++ /dev/null
@@ -1,199 +0,0 @@
-                Sun Microsystems, Inc.
-Binary Code License Agreement
-
-READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED
-SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY
-"AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE
-MEDIA PACKAGE.  BY OPENING THE SOFTWARE MEDIA
-PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT.
-IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY,
-INDICATE YOUR ACCEPTANCE OF THESE TERMS BY
-SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS
-AGREEMENT.  IF YOU DO NOT AGREE TO ALL THESE
-TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR
-PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE
-IS ACCESSED ELECTRONICALLY, SELECT THE "DECLINE"
-BUTTON AT THE END OF THIS AGREEMENT.
-
-1.  LICENSE TO USE.  Sun grants you a
-non-exclusive and non-transferable license for the
-internal use only of the accompanying software and
-documentation and any error corrections provided
-by Sun (collectively "Software"), by the number of
-users and the class of computer hardware for which
-the corresponding fee has been paid.
-
-2.  RESTRICTIONS Software is confidential and
-copyrighted. Title to Software and all associated
-intellectual property rights is retained by Sun
-and/or its licensors.  Except as specifically
-authorized in any Supplemental License Terms, you
-may not make copies of Software, other than a
-single copy of Software for archival purposes.
-Unless enforcement is prohibited by applicable
-law, you may not modify, decompile, or reverse
-engineer Software.  Software is not designed or
-licensed for use in on-line control of aircraft,
-air traffic, aircraft navigation or aircraft
-communications; or in the design, construction,
-operation or maintenance of any nuclear facility.
-No right, title or interest in or to any
-trademark, service mark, logo or trade name of Sun
-or its licensors is granted under this Agreement.
-
-3. LIMITED WARRANTY.  Sun warrants to you that for
-a period of ninety (90) days from the date of
-purchase, as evidenced by a copy of the receipt,
-the media on which Software is furnished (if any)
-will be free of defects in materials and
-workmanship under normal use.  Except for the
-foregoing, Software is provided "AS IS".  Your
-exclusive remedy and Sun's entire liability under
-this limited warranty will be at Sun's option to
-replace Software media or refund the fee paid for
-Software.
-
-4.  DISCLAIMER OF WARRANTY.  UNLESS SPECIFIED IN
-THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS,
-REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
-IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
-PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE
-DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE
-DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
-
-5.  LIMITATION OF LIABILITY.  TO THE EXTENT NOT
-PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS
-LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT
-OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL,
-INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED
-REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT
-OF OR RELATED TO THE USE OF OR INABILITY TO USE
-SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.  In no event will
-Sun's liability to you, whether in contract, tort
-(including negligence), or otherwise, exceed the
-amount paid by you for Software under this
-Agreement.  The foregoing limitations will apply
-even if the above stated warranty fails of its
-essential purpose.
-
-6.  Termination.  This Agreement is effective
-until terminated.  You may terminate this
-Agreement at any time by destroying all copies of
-Software.  This Agreement will terminate
-immediately without notice from Sun if you fail to
-comply with any provision of this Agreement.  Upon
-Termination, you must destroy all copies of
-Software.
-
-7.  Export Regulations.  All Software and
-technical data delivered under this Agreement are
-subject to US export control laws and may be
-subject to export or import regulations in other
-countries.  You agree to comply strictly with all
-such laws and regulations and acknowledge that you
-have the responsibility to obtain such licenses to
-export, re-export, or import as may be required
-after delivery to you.
-
-8.  U.S. Government Restricted Rights.  If
-Software is being acquired by or on behalf of the
-U.S. Government or by a U.S. Government prime
-contractor or subcontractor (at any tier), then
-the Government's rights in Software and
-accompanying documentation will be only as set
-forth in this Agreement; this is in accordance
-with 48 CFR 227.7201 through 227.7202-4 (for
-Department of Defense (DOD) acquisitions) and with
-48 CFR 2.101 and 12.212 (for non-DOD
-acquisitions).
-
-9.  Governing Law.  Any action related to this
-Agreement will be governed by California law and
-controlling U.S. federal law.  No choice of law
-rules of any jurisdiction will apply.
-
-10.  Severability. If any provision of this
-Agreement is held to be unenforceable, this
-Agreement will remain in effect with the provision
-omitted, unless omission would frustrate the
-intent of the parties, in which case this
-Agreement will immediately terminate.
-
-11.  Integration.  This Agreement is the entire
-agreement between you and Sun relating to its
-subject matter.  It supersedes all prior or
-contemporaneous oral or written communications,
-proposals, representations and warranties and
-prevails over any conflicting or additional terms
-of any quote, order, acknowledgment, or other
-communication between the parties relating to its
-subject matter during the term of this Agreement.
-No modification of this Agreement will be binding,
-unless in writing and signed by an authorized
-representative of each party.
-
-For inquiries please contact: Sun Microsystems,
-Inc.  901 San Antonio Road, Palo Alto, California
-94303
-
-
-SUPPLEMENTAL LICENSE TERMS
-JDBCTM 2.0 INTERFACE CLASSES
-
-These supplemental license terms ("Supplement")
-add to or modify the terms of the Binary Code
-License Agreement (collectively, the
-"Agreement"). Capitalized terms not defined in
-this Supplement shall have the same meanings
-ascribed to them in the Agreement. These
-Supplement terms shall supersede any inconsistent
-or conflicting terms in the Agreement, or in any
-license contained within the Software.
-
-1. License to Distribute. Sun grants you a
-non-exclusive, non-transferable, limited license
-to reproduce and distribute the binary and/or
-source code form of the Software to third party
-end users through multiple tiers of distribution,
-provided that you: (i) distribute the Software
-complete and unmodified in its original Java
-Archive file, and only bundled as a part of your
-program that incorporates the Software
-("Program"); (ii) do not distribute additional
-software intended to replace any component(s) of
-the Software; (iii) agree to incorporate the most
-current version of the Software that was available
-from Sun no later than 180 days prior to each
-production release of the Program; (iv) do not
-remove or alter any proprietary legends or notices
-contained in or on the Software; (v) only
-distribute the Program pursuant to a license
-agreement that protects Sun's interest consistent
-with the terms contained in the Agreement; (vi)
-may not create, or authorize your licensees to cr!
-eate additional classes, interfaces, or
-subpackages that are contained in the "java"
-"javax" or "sun" packages or similar as specified
-by Sun in any class file naming convention; and
-(vii) agree to defend and indemnify Sun and its
-licensors from and against any damages, costs,
-liabilities, settlement amounts and/or expenses
-(including attorneys' fees) incurred in connection
-with any claim, lawsuit or action by any third
-party that arises or results from the use or
-distribution of any and all Programs.
-
-2. Trademarks and Logos. You acknowledge as
-between you and Sun that Sun owns the Java
-trademark and all Java-related trademarks, logos
-and icons including the Coffee Cup and Duke ("Java
-Marks") and agree to comply with the Java
-Trademark Guidelines at
-http://java.sun.com/trademarks.html.
-
-
-
-
-
-                
\ No newline at end of file
diff --git a/build/lib/special/test/jta.jar b/build/lib/special/test/jta.jar
deleted file mode 100644 (file)
index e0822a9..0000000
Binary files a/build/lib/special/test/jta.jar and /dev/null differ
diff --git a/build/lib/special/test/jta.licence.txt b/build/lib/special/test/jta.licence.txt
deleted file mode 100644 (file)
index 45328c1..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-  
-Sun Microsystems, Inc. 
-Binary Code License Agreement
-
-READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE MEDIA PACKAGE.  BY OPENING THE SOFTWARE MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT.  IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS AGREEMENT.  IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE "DECLINE" BUTTON AT THE END OF THIS AGREEMENT. 
-
-1.  LICENSE TO USE.  Sun grants you a non-exclusive and non-transferable license for the internal use only of the accompanying software and documentation and any error corrections provided by Sun (collectively "Software"), by the number of users and the class of computer hardware for which the corresponding fee has been paid. 
-
-2.  RESTRICTIONS.  Software is confidential and copyrighted. Title to Software and all associated intellectual property rights is retained by Sun and/or its licensors.  Except as specifically authorized in any Supplemental License Terms, you may not make copies of Software, other than a single copy of Software for archival purposes.  Unless enforcement is prohibited by applicable law, you may not modify, decompile, or reverse engineer Software.  Licensee acknowledges that Licensed Software is not designed or intended for use in the design, construction, operation or maintenance of any nuclear facility. Sun Microsystems, Inc. disclaims any express or implied warranty of fitness for such uses.   No right, title or interest in or to any trademark, service mark, logo or trade name of Sun or its licensors is granted under this Agreement. 
-
-3. LIMITED WARRANTY.  Sun warrants to you that for a period of ninety (90) days from the date of purchase, as evidenced by a copy of the receipt, the media on which Software is furnished (if any) will be free of defects in materials and workmanship under normal use.  Except for the foregoing, Software is provided "AS IS".  Your exclusive remedy and Sun's entire liability under this limited warranty will be at Sun's option to replace Software media or refund the fee paid for Software. 
-
-4.  DISCLAIMER OF WARRANTY.  UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. 
-
-5.  LIMITATION OF LIABILITY.  TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.  In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement.  The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. 
-
-6.  Termination.  This Agreement is effective until terminated.  You may terminate this Agreement at any time by destroying all copies of Software.  This Agreement will terminate immediately without notice from Sun if you fail to comply with any provision of this Agreement.  Upon Termination, you must destroy all copies of Software. 
-
-7. Export Regulations. All Software and technical data delivered under this Agreement are subject to US export control laws and may be subject to export or import regulations in other countries.  You agree to comply strictly with all such laws and regulations and acknowledge that you have the responsibility to obtain such licenses to export, re-export, or import as may be required after delivery to you. 
-
-8.   U.S. Government Restricted Rights.  If Software is being acquired by or on behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor (at any tier), then the Government's rights in Software and accompanying documentation will be only as set forth in this Agreement; this is in accordance with 48 CFR 227.7201 through 227.7202-4 (for Department of Defense (DOD) acquisitions) and with 48 CFR 2.101 and 12.212 (for non-DOD acquisitions). 
-
-9.  Governing Law.  Any action related to this Agreement will be governed by California law and controlling U.S. federal law.  No choice of law rules of any jurisdiction will apply. 
-
-10.  Severability. If any provision of this Agreement is held to be unenforceable, this Agreement will remain in effect with the provision omitted, unless omission would frustrate the intent of the parties, in which case this Agreement will immediately terminate. 
-
-11.  Integration.  This Agreement is the entire agreement between you and Sun relating to its subject matter.  It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement.  No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. 
-
-JAVATM INTERFACE CLASSES 
-JAVA TRANSACTION API (JTA), VERSION 1.0.1B, MAINTENANCE RELEASE
-SUPPLEMENTAL LICENSE TERMS
-
-These supplemental license terms ("Supplemental Terms") add to or modify the terms of the Binary Code License Agreement (collectively, the "Agreement"). Capitalized terms not defined in these Supplemental Terms shall have the same meanings ascribed to them in the Agreement. These Supplemental Terms shall supersede any inconsistent or conflicting terms in the Agreement, or in any license contained within the Software. 
-
-1. Software Internal Use and Development License Grant. Subject to the terms and conditions of this Agreement, including, but not limited to Section 3 (Java Technology Restrictions) of these Supplemental Terms, Sun grants you a non-exclusive, non-transferable, limited license to reproduce internally and use internally the binary form of the Software, complete and unmodified, for the sole purpose of designing, developing and testing your Java applets and applications ("Programs"). 
-
-2. License to Distribute Software.  In addition to the license granted in Section 1 (Software Internal Use and Development License Grant) of these Supplemental Terms, subject to the terms and conditions of this Agreement, including but not limited to Section 3 (Java Technology Restrictions), Sun grants you a non-exclusive, non-transferable, limited license to reproduce and distribute the Software in binary form only, provided that you (i) distribute the Software complete and unmodified and only bundled as part of your Programs, (ii) do not distribute additional software intended to replace any component(s) of the Software, (iii) do not remove or alter any proprietary legends or notices contained in the Software, (iv) only distribute the Software subject to a license agreement that protects Sun's interests consistent with the terms contained in this Agreement, and (v) agree to defend and indemnify Sun and its licensors from and against any damages, costs, liabilities, settlement amounts and/or expenses (including attorneys' fees) incurred in connection with any claim, lawsuit or action by any third party that arises or results from the use or distribution of any and all Programs and/or Software. 
-
-3. Java Technology Restrictions. You may not modify the Java Platform Interface ("JPI", identified as classes contained within the "java" package or any subpackages of the "java" package), by creating additional classes within the JPI or otherwise causing the addition to or modification of the classes in the JPI.  In the event that you create an additional class and associated API(s) which (i) extends the functionality of the Java Platform, and (ii) is exposed to third party software developers for the purpose of developing additional software which invokes such additional API, you must promptly publish broadly an accurate specification for such API for free use by all developers. You may not create, or authorize your licensees to create additional classes, interfaces, or subpackages that are in any way identified as "java", "javax", "sun" or similar convention as specified by Sun in any naming convention designation. 
-
-4. Trademarks and Logos. You acknowledge and agree as between you and Sun that Sun owns the SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks and all SUN, SOLARIS, JAVA, JINI, FORTE, and iPLANET-related trademarks, service marks, logos and other brand designations ("Sun Marks"), and you agree to comply with the Sun Trademark and Logo Usage Requirements currently located at http://www.sun.com/policies/trademarks. Any use you make of the Sun Marks inures to Sun's benefit. 
-
-5. Source Code. Software may contain source code that is provided solely for reference purposes pursuant to the terms of this Agreement.  Source code may not be redistributed unless expressly provided for in this Agreement. 
-
-6. Termination for Infringement.  Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. 
-
-For inquiries please contact: Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054. 
-
diff --git a/build/trailer.xml b/build/trailer.xml
deleted file mode 100644 (file)
index d210ff5..0000000
+++ /dev/null
@@ -1,568 +0,0 @@
-<!-- PROPERTIES -->
-
-
-<!-- Default entry point for the build -->
-<target name="all" depends="clean, init, compile, jar" />
-
-<target name="startup" depends="init_directory_properties">
-  <property name="module.classpath_id" value="module.build.path" />
-  <property name="module.classpath" refid="${module.classpath_id}" />
-  
-  <path id="module.build.path">
-    <fileset dir="${external.lib.dir}">
-      <include name="**/*.jar"/>
-    </fileset>
-  </path>
-  
-  <path id="module.testbuild.path">
-    <fileset dir="${test.lib.dir}">
-      <include name="**/*.jar"/>
-    </fileset>
-  </path>
-
-</target>
-
-<target name="init" depends="import_header,startup">
-       <tstamp />
-</target>
-
-<!-- ============================================================================
-       Cleanup 
-       ============================================================================ -->
-
-<target name="ant.deps">
-</target>
-
-<target name="deps" depends="import_header">
-  <antcall target="module.build.deps">
-    <param name="download.dir" value="${external.lib.dir}"/>
-  </antcall>
-  <antcall target="test.d">
-    <param name="download.dir" value="${test.lib.dir}"/>
-  </antcall>
-  <antcall target="ant.d">
-    <param name="download.dir" value="${ant.downloaded.lib.dir}"/>
-  </antcall>
-  <antcall target="module.test.deps">
-    <param name="download.dir" value="${test.lib.dir}"/>
-  </antcall>
-</target>
-
-<target name="clean" depends="init_directory_properties,base-test-clean">
-       <delete dir="${module.classes.dir}" />
-       <delete dir="${module.testclasses.dir}" />
-       <delete dir="${module.testoutput.dir}" />
-       <delete dir="${module.jars.dir}" />
-       <delete dir="${module.docbase.dir}" />
-       <delete dir="${module.report.dir}" />
-       <delete dir="${module.sql.dir}" />
-       <delete dir="${module.build.dir}"/>
-</target>
-
-<target name="clean-deps" depends="init_directory_properties">
-  <delete>
-    <fileset dir="${external.lib.dir}" includes="*"/>
-  </delete>
-  <delete>
-    <fileset dir="${test.lib.dir}" includes="*"/>
-  </delete>
-  <delete>
-    <fileset dir="${ant.downloaded.lib.dir}" includes="*"/>
-  </delete>
-</target>
-
-<!-- ============================================================================
-       Compilation of java code. 
-       ============================================================================ -->
-
-<!--  Compilation of java code, requires a srcdirs variable to be
-      set to a path of one of more directories separated by : or ;
--->
-<target name="compile-impl" depends="init">
-       <mkdir dir="${module.classes.dir}" />
-       <echo level="info" message="compile ${module.name}, source dirs ${srcdirs}" />
-       <javac srcdir="${srcdirs}" source="${javac.source}"
-               destdir="${module.classes.dir}" classpath="${module.classpath}"
-               debug="${javac.debug}" debuglevel="${javac.debug.level}" />
-       <copy todir="${module.classes.dir}">
-               <fileset dir="${module.source.dir}" excludes="**/*.java" />
-       </copy>
-</target>
-
-<!--  Compilation of regular source code --> 
-<target name="compile-src" unless="ejbsource.available" depends="init">
-    <antcall target="compile-impl">
-        <param name="srcdirs" value="${module.source.dir}"/>
-    </antcall>
-</target>
-
-<!--  Compilation of regular source code and generated source code
-      for EJBs -->
-<target name="compile-src-ejb" if="ejbsource.available" depends="init">
-    <antcall target="compile-impl">
-        <param name="srcdirs" value="${module.source.dir}:${module.ejbsource.dir}"/>
-    </antcall>
-</target>
-
-<target name="compile" depends="init">
-    <available file="${module.ejbsource.dir}" type="dir" property="ejbsource.available"/>
-    <antcall target="compile-src"/>
-    <antcall target="compile-src-ejb"/>
-</target>
-
-<!-- ============================================================================
-       Generating a jar file. 
-       ============================================================================ -->
-
-<target name="jar" depends="compile">
-       <mkdir dir="${module.jars.dir}" />
-       <echo level="info" message="jar cdmvbase ${module.name}" />
-       <!-- Hack: how to remove the schemas directory from the jar when it does not exist -->
-       <mkdir dir="${xmlschemas.dir}" />
-       <jar jarfile="${module.jars.dir}/${module.jar.name}"
-               compress="${jarcompress}">
-               <fileset dir="${module.classes.dir}" />
-               <fileset dir="${xmlschemas.dir}" />
-       </jar>
-</target>
-
-
-<!-- ============================================================================
-       Generate javadoc.
-       ============================================================================ -->
-
-<target name="javadoc" depends="init">
-       <!-- create javadocs -->
-       <javadoc packagenames="*" destdir="${module.javadoc.dir}"
-               author="true" version="true" use="true" private="yes"
-               windowtitle="Dragon documentation" source="${javac.source}"
-               sourcepath="${module.source.dir}"
-               classpath="${module.classpath}">
-               <arg value="-docfilessubdirs"/>
-               <arg value="-overview"/>
-               <arg value="${module.source.dir}/overview.html"/>
-       </javadoc>
-</target>
-
-<target name="testjavadoc" depends="testclasses">
-       <!-- create javadocs -->
-       <javadoc packagenames="*" destdir="${module.testjavadoc.dir}"
-               author="true" version="true" use="true" private="yes"
-               windowtitle="Dragon test documentation" source="${javac.source}"
-               sourcepath="${module.test.dir}"
-               classpathref="test.classpath">
-       </javadoc>
-</target>
-
-<!-- ============================================================================
-       Generate javadoc in pdf format
-       ============================================================================ -->
-
-<target name="pdfdoc" depends="init">
-       <!-- create javadocs -->
-       <mkdir dir="${module.pdfdoc.dir}" />
-       <javadoc packagenames="*" author="true" version="true" private="yes"
-               source="${javac.source}" doclet="com.tarsec.javadoc.pdfdoclet.PDFDoclet"
-               docletpathref="pdfdoclet.path"
-               classpath="${module.classpath}"
-               sourcepath="${module.source.dir}"
-               additionalparam="-pdf ${module.pdfdoc.dir}/${module.name}.pdf">
-               <!-- fileset dir="${module.source.dir}">
-                       <include name="**/*.java" />
-               </fileset -->
-       </javadoc>
-       <echo
-               message="Unfortuantely, this target will have generated some errors but the pdf will still look fine" />
-       <echo>Result is available in ${module.pdfdoc.dir}"</echo>
-</target>
-
-<!-- ============================================================================
-       Check javadoc
-       ============================================================================ -->
-
-<target name="doccheck" depends="init">
-       <mkdir dir="${module.doccheck.dir}" />
-       <javadoc packagenames="*" destdir="${module.doccheck.dir}"
-               author="true" version="true"
-               doclet="com.sun.tools.doclets.doccheck.DocCheck"
-               docletpathref="doccheck.path" 
-               classpath="${module.classpath}"
-               sourcepath="${module.source.dir}">
-       </javadoc>
-       <echo>Results are available in ${module.doccheck.dir}"</echo>
-</target>
-
-<!-- ============================================================================
-       Copy build results to a standard location. 
-       ============================================================================ -->
-       
-<target name="clean-dist" depends="clean">
-  <delete>
-    <fileset dir="${module.dist.dir}" includes="**"/>
-  </delete> 
-</target>
-       
-<target name="dist-lite-product" depends="deps,jar">
-    <mkdir dir="${module.dist.dir}"/>
-       <delete>
-               <fileset dir="${module.dist.dir}" excludes="**/CVS" />
-       </delete>
-       <copy todir="${module.dist.dir}" flatten="yes">
-               <fileset dir="${module.build.dir}">
-                       <include name="**/*.jar" />
-               </fileset>
-               <fileset dir="${module.build.dir}">
-                       <include name="**/*.pdf" />
-               </fileset>
-       </copy>
-       <if>
-         <isset property="webroot.dir"/>
-         <then>
-           <jar destfile="${module.dist.dir}/${module.name}.war"
-                    basedir="${webroot.dir}"/>
-         </then>
-       </if>
-</target>
-
-<target name="dist-lite-test" depends="deps,testclasses">
-    <jar destfile="${module.dist.dir}/${module.testjar.name}"
-               basedir="${module.testclasses.dir}" 
-               includes="**/*.class"/>
-    <jar destfile="${module.dist.dir}/${module.testresourcesjar.name}"
-                basedir="${module.testresource.dir}" />
-</target>
-
-<target name="dist-lite" depends="clean,dist-lite-product,dist-lite-test">
-  <if> 
-    <isset property="post-dist-lite"/>
-       <then> 
-         <antcall target="post-dist-lite"/>
-       </then>
-  </if>
-</target>
-
-<target name="dist-javadoc" depends="javadoc,pdfdoc,testjavadoc">
-    <jar destfile="${module.dist.dir}/${module.javadocjar.name}"
-               basedir="${module.javadoc.dir}" />
-       <jar destfile="${module.dist.dir}/${module.testjavadocjar.name}"
-               basedir="${module.testjavadoc.dir}" />          
-       <copy todir="${module.api.forrest.dir}">
-               <fileset dir="${module.javadoc.dir}" />
-       </copy>                         
-</target>
-
-<target name="dist"
-       depends="dist-lite,dist-javadoc"
-       description="copying compiled sources to dist location and copy documentation to forrest site">
-       <echo
-               message="Copying build results for ${module.name} to a location where other modules can find it." />
-</target>
-
-<!-- ============================================================================
-       Check style, 
-       ============================================================================ -->
-
-<target name="checkstyle-impl">
-   <checkstyle config="${build.dir}/${checkstyle.rules}"
-               failOnViolation="false">
-               <classpath>
-                 <pathelement path="${checkstyle.classpath}"/>
-               </classpath>
-               <fileset dir="${checkstyle.srcdir}" includes="**/*.java"/>
-               <formatter type="xml" tofile="${module.checkstyle.dir}/${checkstyle.report}.xml"/>
-       </checkstyle>
-       <style style="${build.dir}/checkstyle-simple.xsl"
-                  in="${module.checkstyle.dir}/${checkstyle.report}.xml"
-                  out="${module.checkstyle.dir}/${checkstyle.report}.html"/>
-       <echo>Results are available at ${module.checkstyle.dir}/${checkstyle.report}.html</echo>
-</target>
-
-<target name="checkstyle" depends="testclasses">
-    <mkdir dir="${module.checkstyle.dir}"/>
-       <antcall target="checkstyle-impl">
-         <param name="checkstyle.classpath" refid="module.build.path"/>
-         <param name="checkstyle.srcdir" value="${module.source.dir}"/>
-         <param name="checkstyle.report" value="source-results"/>
-       </antcall>
-       <antcall target="checkstyle-impl">
-         <param name="checkstyle.classpath" refid="module.testbuild.path"/>
-         <param name="checkstyle.srcdir" value="${module.test.dir}"/>
-         <param name="checkstyle.report" value="test-results"/>
-       </antcall>
-</target>
-
-<!-- ============================================================================
-       Formatting source code.  
-       ============================================================================ -->
-<target name="format" depends="init">
-       <jalopy loglevel="INFO" classpathref="module.testbuild.path"
-               convention="${jalopy.rules}">
-               <fileset dir="${module.source.dir}">
-                       <include name="**/*.java" />
-               </fileset>
-               <fileset dir="${module.test.dir}">
-                       <include name="**/*.java" />
-               </fileset>
-       </jalopy>
-</target>
-
-<!-- =========================================================================
-       Check redundancy in the code
-       ========================================================================= -->
-<target name="simian" depends="init">
-       <simian threshold="7">
-               <fileset dir="${module.source.dir}" includes="**/*.java" />
-       </simian>
-</target>
-
-
-<!-- =========================================================================
-       Check dependencies using macker.
-       ========================================================================= -->
-<property name="macker.file" value="macker.xml" />
-<target name="macker" depends="compile">
-       <available file="${macker.file}" property="macker.file.found" />
-       <fail message="Macker source file ${macker.file} was not found."
-               unless="macker.file.found" />
-       <macker>
-               <rules dir="." includes="macker.xml" />
-               <classes dir="${module.classes.dir}">
-                       <include name="**/*.class" />
-               </classes>
-               <classpath>
-                   <pathelement path="${module.classes.dir}" />
-                       <path refid="module.build.path" />
-               </classpath>
-       </macker>
-</target>
-
-
-<!-- ===========================================================================
-       JUnit tests.
-       =========================================================================== -->
-
-<target name="testclasses" depends="compile">
-       <mkdir dir="${module.test.dir}" />
-       <mkdir dir="${module.testresource.dir}" />
-       <mkdir dir="${module.testclasses.dir}" />
-               <path id="test.classpath">
-               <pathelement path="${module.classes.dir}" />
-               <pathelement path="${module.test.dir}" />
-               <path refid="module.testbuild.path" />
-               <path refid="module.build.path" />
-       </path>
-       <javac srcdir="${module.test.dir}"
-               destdir="${module.testclasses.dir}" 
-               debug="${javac.debug}" debuglevel="${javac.debug.level}" compiler="modern"
-               source="${javac.source}" failonerror="yes">
-               <classpath>
-                   <path refid="test.classpath"/>
-               </classpath>
-       </javac>
-       <copy todir="${module.testclasses.dir}">
-               <fileset dir="${module.test.dir}" excludes="**/*.java" />
-               <fileset dir="${module.testresource.dir}" />
-       </copy>
-</target>
-
-<!-- test-base is a target mean to be used by other targets. 
-       It expects one parameter names 'testedclasses' to indicate the directory
-       where the compiled test classes reside. 
--->
-
-<target name="base-test-clean">
-  <delete file="coverage.ec"/>
-  <delete file="coverage.em"/>
-</target>
-
-
-<target name="base-test-impl" depends="testclasses">
-       <mkdir dir="${module.report.dir}" />
-       <antcall target="emma"/>
-       <junit haltonfailure="${junit.halt.on.failure}" printsummary="on" dir="." fork="yes" showoutput="yes">
-               <batchtest todir="${module.report.dir}">
-                       <fileset dir="${module.testclasses.dir}">
-                               <include name="${testclassnames}" />
-                               <!--  exclude inner classes --> 
-                               <exclude name="**/*$$*.class"/>
-                       </fileset>
-               </batchtest>
-               <formatter type="xml" />
-               <classpath>
-                       <path refid="xmlschemas.path" />
-                       <pathelement path="${module.testclasses.dir}" />
-                       <pathelement path="${testedclasses}" />
-                       <pathelement path="${testlibrary}" />
-                       <pathelement path="${module.classes.dir}" />
-                       <pathelement path="${log4j.properties.dir}" /><!--  for log4j.properties -->
-                       <!-- the test resource directory is added to the path as well to make it
-                               easy to access resources from tests -->
-                       <pathelement path="${module.testresource.dir}" />
-                       <path refid="module.testbuild.path" />
-                       <path refid="module.build.path" />
-               </classpath>
-       </junit>
-</target>
-
-<target name="base-test-allclasses" unless="test">
-       <echo>Testing all classes</echo>
-       <antcall target="base-test-impl">
-               <param name="testclassnames" value="**/*Test.class" />
-       </antcall>
-</target>
-
-<target name="base-test-singleclass" if="test">
-       <echo>Testing testcases that conform to the pattern *${test}*</echo>
-       <antcall target="base-test-impl">
-               <param name="testclassnames" value="**/*${test}*.class" />
-       </antcall>
-</target>
-
-<target name="base-test">
-       <antcall target="base-test-allclasses" />
-       <antcall target="base-test-singleclass" />
-</target>
-
-<!-- Run junit test -->
-
-<target name="test">
-       <antcall target="base-test">
-               <param name="testedclasses" value="${module.classes.dir}" />
-       </antcall>
-</target>
-
-<!-- reporting target used by other targets. This should not depend on 
-       the test target to avoid unnecessary duplicate runs of the tests -->
-
-<target name="base-reports" depends="init">
-       <mkdir dir="${module.report.dir}/html" />
-       <mkdir dir="${module.report.dir}/html/unit" />
-       <junitreport todir="${module.report.dir}" tofile="${unitreport}">
-               <fileset dir="${module.report.dir}">
-                       <include name="TEST-*.xml" />
-               </fileset>
-               <report todir="${module.report.dir}/html/unit" />
-       </junitreport>
-</target>
-
-<!-- Run junit tests with HTML reporting -->
-
-<target name="junit-reports" depends="test">
-       <antcall target="base-reports" />
-       <antcall target="emma-reports" />
-</target>
-
-<target name="reports">
-  <antcall target="junit-reports">
-    <param name="emma.enabled" value="true"/>
-  </antcall>
-</target>
-
- <!-- Instrument classes using emma --> 
-  
-  <target name="emma" depends="init_directory_properties">
-    <emma enabled="${emma.enabled}">
-      <instr instrpath="${module.classes.dir}" mode="overwrite"/>
-    </emma>
-  </target>
-  
-  <target name="emma-reports" depends="init_directory_properties" if="emma.enabled">
-    <mkdir dir="${module.emmareport.dir}"/>
-    <emma enabled="${emma.enabled}" >
-      <report sourcepath="${module.source.dir}">
-        <!-- collect all EMMA data dumps (metadata and runtime): -->
-        <infileset dir="." includes="*.em, *.ec" />
-
-        <txt outfile="${module.emmareport.dir}/report.txt"/>
-        <html outfile="${module.emmareport.dir}/index.html"/>
-       <!-- sourcepath>
-         <dirset dir="${src}" >
-            <include name="." /> 
-          </dirset>
-        </sourcepath -->
-      </report>
-    </emma>
-  </target>
-
-<!-- =======================================================================
-   FORREST
-   ======================================================================-->
-  <target name="forrest" description="runs Forrest">
-    <property name="forrest.home" location="${env.FORREST_HOME}" />
-    <property name="forrest.ant.home" location="${forrest.home}/tools/ant" />
-    <java classname="org.apache.tools.ant.Main" fork="true" failonerror="true" maxmemory="128M">
-      <classpath>
-        <fileset dir="${forrest.ant.home}/lib">
-          <include name="*.jar" />
-        </fileset>
-        <pathelement path="${java.home}/../lib/tools.jar" />
-      </classpath>
-      <sysproperty key="ant.home" value="${forrest.ant.home}" />
-      <sysproperty key="forrest.home" value="${forrest.home}" />
-      <sysproperty key="basedir" value="${basedir}" />
-      <sysproperty key="java.endorsed.dirs" value="${forrest.home}/lib/endorsed" />
-      <arg line="-f ${forrest.home}/main/forrest.build.xml" />
-    </java>
-  </target> 
-
-<!--  ============================================================================
-      Database targets
-      ============================================================================ -->
-           
-<!--  Runs a main program found in the test source tree. 
-      Properties:
-         - my.test.program: class name of the program to run 
-         - my.args: arguments to be passed to the program --> 
-<target name="runTestProgram" depends="testclasses">
-       <java classname="${my.test.program}">
-           <arg line="${my.args}"/>
-               <classpath>
-                       <path refid="xmlschemas.path" />
-                       <path refid="junit.path" />
-                       <pathelement path="${module.testclasses.dir}" />
-                       <pathelement path="${testedclasses}" />
-                       <pathelement path="${testlibrary}" />
-                       <pathelement path="${module.classes.dir}" />
-                       <pathelement path="${log4j.properties.dir}" /><!--  for log4j.properties -->
-                       <!-- the test resource directory is added to the path as well to make it
-                               easy to access resources from tests -->
-                       <pathelement path="${module.testresource.dir}" />
-                       <path refid="module.testbuild.path" />
-                       <path refid="module.build.path" />
-               </classpath>
-       </java>
-</target>
-
-<property name="database.starter" 
-          value="org.wamblee.persistence.test.DatabaseStarter"/>
-<target name="startdb">
-    <echo>After the database has started, you must populate the database in some way.
-          For instance, using the schemaupdate ant target</echo>
-    <antcall target="runTestProgram">
-        <param name="my.test.program" value="${database.starter}"/>
-        <param name="my.args" value=""/>
-    </antcall>
-</target>
-
-<property name="schemaupdater" 
-          value="org.wamblee.test.HibernateUtils"/>
-<target name="schemaupdate">
-    <antcall target="runTestProgram">
-        <param name="my.test.program" value="${schemaupdater}"/>
-        <param name="my.args" value="${hibernate.filelist}"/>
-    </antcall>
-</target>
-
-<target name="schemaexport" depends="init">
-    <mkdir dir="${module.sql.dir}" />
-    <echo>Generating schema in output file ${module.sql.dir}/hibernate.sql</echo>
-    <antcall target="runTestProgram">
-        <param name="my.test.program" value="${schemaupdater}"/>
-        <param name="my.args" value="-export ${module.sql.dir}/hibernate.sql ${hibernate.filelist}"/>
-    </antcall>
-</target>
-
-<!-- INCLUDED MARKER -->
-<property name="build_trailer_included" value="true" />
-
-