Behold, a column identifier generator for our keystroke saving needs.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2059 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2007-02-20 18:52:28 +00:00
parent c877f8120a
commit 140fe70475
5 changed files with 382 additions and 6 deletions
+5 -5
View File
@@ -35,6 +35,7 @@
<mkdir dir="${javadoc.dir}"/>
<copy todir="${deploy.dir}/classes">
<fileset dir="${src.dir}" includes="**/*.properties"/>
<fileset dir="${src.dir}" includes="**/*.tmpl"/>
</copy>
<copy todir="${deploy.dir}/lib" flatten="true">
<fileset refid="${app.name}.libs"/>
@@ -102,8 +103,8 @@
</javadoc>
</target>
<!-- builds the javadocs and stuffs them in a directory where they won't
be blown away when we do "clean" next time -->
<!-- builds the javadocs and stuffs them in a directory where they won't -->
<!-- be blown away when we do "clean" next time -->
<target name="savedoc" depends="javadoc">
<delete dir="${savedoc.dir}/api"/>
<copy todir="${savedoc.dir}/api">
@@ -146,9 +147,8 @@
</target>
<!-- builds our distribution files (war and jar) -->
<target name="dist" depends="prepare,compile,tests">
<jar destfile="${deploy.dir}/${app.name}.jar"
basedir="${deploy.dir}/classes">
<target name="dist" depends="prepare,compile">
<jar destfile="${deploy.dir}/${app.name}.jar" basedir="${deploy.dir}/classes">
<exclude name="**/tests/**"/>
</jar>
</target>