Added about info to the packaging of the translation tool.

This commit is contained in:
amontano 2006-10-14 07:28:38 +00:00
parent 3ec4a69012
commit e5e6a64052
1 changed files with 18 additions and 0 deletions

View File

@ -625,6 +625,9 @@ the jvm starting tomcat:
<target name="tt-handheld-compile" depends="init"
description="compiles the handheld Translation Tool" >
<mkdir dir="${tthandheldbin}"/>
<antcall target="copy-about-dicts-for-tt-jarring">
<param name="my.bin" value="${tthandheldbin}"/>
</antcall>
<antcall target="create-timestamp-source-code"/>
<antcall target="our-internal-javac-task">
<param name="target.jvm" value="1.4"/>
@ -652,6 +655,9 @@ the jvm starting tomcat:
<antcall target="copy-tmw-fonts-to-bin-dir">
<param name="my.bin" value="${ttappletjwsbin}"/>
</antcall>
<antcall target="copy-about-dicts-for-tt-jarring">
<param name="my.bin" value="${ttappletjwsbin}"/>
</antcall>
<antcall target="create-timestamp-source-code"/>
<antcall target="our-internal-javac-task">
<param name="mybin" value="${ttappletjwsbin}"/>
@ -685,6 +691,9 @@ the jvm starting tomcat:
<antcall target="copy-tmw-fonts-to-bin-dir">
<param name="my.bin" value="${ttservletbin}"/>
</antcall>
<antcall target="copy-about-dicts-for-tt-jarring">
<param name="my.bin" value="${ttservletbin}"/>
</antcall>
<antcall target="create-timestamp-source-code"/>
<!-- For now, these two paths are identical: -->
<path id="ttsc.class.path">
@ -1467,6 +1476,15 @@ public class ThdlVersion {
</copy>
</target>
<target name="copy-about-dicts-for-tt-jarring"
description="Copies document containing the about information to be included in the translation tool jar.">
<copy todir="${my.bin}/org/thdl/tib/scanner">
<fileset dir="${source}/org/thdl/tib/scanner">
<include name="*.txt"/>
</fileset>
</copy>
</target>
</project>
<!-- My TO-DO list: -->