Moved things that are not part of the Depot public API into an impl package.

Also moved WhereClause into depot.clause since it really wanted to be there.
This commit is contained in:
Michael Bayne
2008-11-25 20:44:22 +00:00
parent 980be19918
commit 8fec576663
53 changed files with 315 additions and 222 deletions
+17 -3
View File
@@ -141,7 +141,6 @@
<pathelement location="${classes.dir}"/>
<pathelement location="${basedir}"/> <!-- for rsrc/ -->
<fileset dir="${deploy.dir}/lib" includes="*.jar"/>
<fileset dir="lib/test" includes="*.jar"/>
</classpath>
<sysproperty key="test_dir" value="${basedir}"/>
<formatter type="brief" usefile="false"/>
@@ -187,10 +186,25 @@
<!-- generate a class hierarchy diagram -->
<target name="hiergen" depends="prepare,compile">
<taskdef name="viztool" classname="com.samskivert.viztool.DriverTask"/>
<taskdef name="viztool" classname="com.samskivert.viztool.DriverTask">
<classpath>
<fileset dir="../viztool/dist" includes="*.jar"/>
<fileset dir="../viztool/lib" includes="*.jar"/>
</classpath>
</taskdef>
<viztool visualizer="com.samskivert.viztool.hierarchy.HierarchyVisualizer"
pkgroot="com.samskivert" classes="com.samskivert.*" output="hierarchy.ps">
pkgroot="com.samskivert" classes="com.samskivert.depot.*" output="hierarchy.ps">
<classpath refid="classpath"/>
</viztool>
</target>
<!-- TEMP: runs our test that requires a repository (replace with HSQLDB unit test) -->
<target name="repotest" depends="prepare,compile">
<copy file="depot.properties" tofile="${classes.dir}/depot.properties"/>
<java classpathref="classpath" fork="true" maxmemory="256M"
classname="com.samskivert.depot.tests.TestRepository">
<jvmarg value="-Dcom.samskivert.depot.cache_debug=true"/>
</java>
<delete file="${classes.dir}/depot.properties"/>
</target>
</project>