Modified code to use new repository services. Created proper configuration

files rather than hardcoding configuration in classes. Made startup error
reporting appear in a dialog rather than be written to stderr.


git-svn-id: https://samskivert.googlecode.com/svn/trunk@328 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-09-20 20:42:48 +00:00
parent baf5cade44
commit 4057710901
13 changed files with 247 additions and 157 deletions
+4 -1
View File
@@ -32,6 +32,9 @@
<fileset dir="${src.dir}" includes="**/*.gif"/>
<fileset dir="${src.dir}" includes="**/*.jpg"/>
</copy>
<copy todir="${deploy.dir}/classes/conf">
<fileset dir="conf"/>
</copy>
</target>
<!-- cleans out the installed application -->
@@ -67,7 +70,7 @@
<!-- builds our distribution files (war and jar) -->
<target name="dist" depends="prepare,compile">
<jar jarfile="${deploy.dir}/${dist.jar}"
<jar file="${deploy.dir}/${dist.jar}"
basedir="${deploy.dir}/classes"/>
</target>