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

View file

@ -625,6 +625,9 @@ the jvm starting tomcat:
<target name="tt-handheld-compile" depends="init" <target name="tt-handheld-compile" depends="init"
description="compiles the handheld Translation Tool" > description="compiles the handheld Translation Tool" >
<mkdir dir="${tthandheldbin}"/> <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="create-timestamp-source-code"/>
<antcall target="our-internal-javac-task"> <antcall target="our-internal-javac-task">
<param name="target.jvm" value="1.4"/> <param name="target.jvm" value="1.4"/>
@ -652,6 +655,9 @@ the jvm starting tomcat:
<antcall target="copy-tmw-fonts-to-bin-dir"> <antcall target="copy-tmw-fonts-to-bin-dir">
<param name="my.bin" value="${ttappletjwsbin}"/> <param name="my.bin" value="${ttappletjwsbin}"/>
</antcall> </antcall>
<antcall target="copy-about-dicts-for-tt-jarring">
<param name="my.bin" value="${ttappletjwsbin}"/>
</antcall>
<antcall target="create-timestamp-source-code"/> <antcall target="create-timestamp-source-code"/>
<antcall target="our-internal-javac-task"> <antcall target="our-internal-javac-task">
<param name="mybin" value="${ttappletjwsbin}"/> <param name="mybin" value="${ttappletjwsbin}"/>
@ -685,6 +691,9 @@ the jvm starting tomcat:
<antcall target="copy-tmw-fonts-to-bin-dir"> <antcall target="copy-tmw-fonts-to-bin-dir">
<param name="my.bin" value="${ttservletbin}"/> <param name="my.bin" value="${ttservletbin}"/>
</antcall> </antcall>
<antcall target="copy-about-dicts-for-tt-jarring">
<param name="my.bin" value="${ttservletbin}"/>
</antcall>
<antcall target="create-timestamp-source-code"/> <antcall target="create-timestamp-source-code"/>
<!-- For now, these two paths are identical: --> <!-- For now, these two paths are identical: -->
<path id="ttsc.class.path"> <path id="ttsc.class.path">
@ -1467,6 +1476,15 @@ public class ThdlVersion {
</copy> </copy>
</target> </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> </project>
<!-- My TO-DO list: --> <!-- My TO-DO list: -->