mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-8991 Ant build.xml for building and running the tool.
X-SVN-Rev: 31236
This commit is contained in:
parent
2027e719ec
commit
4f84d60612
1 changed files with 76 additions and 0 deletions
76
tools/currency/build.xml
Normal file
76
tools/currency/build.xml
Normal file
|
@ -0,0 +1,76 @@
|
|||
<!--
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2012, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
-->
|
||||
<project name="currency-numeric" default="build" basedir=".">
|
||||
<property name="out.dir" value="${basedir}/out"/>
|
||||
<property name="src.dir" value="${basedir}/src"/>
|
||||
<property name="classes.dir" value="${out.dir}/bin"/>
|
||||
<property name="res.dir" value="${out.dir}/res"/>
|
||||
<property name="xml.dir" value="${out.dir}/xml"/>
|
||||
|
||||
<property name="base.url" value="http://www.currency-iso.org/"/>
|
||||
<property name="current.xml" value="dl_iso_table_a1.xml"/>
|
||||
<property name="historic.xml" value="dl_iso_tables_a3.xml"/>
|
||||
|
||||
<target name="build" depends="check, resource" description="Verify ICU's local data and generate ISO 4217 alpha-numeric code mapping data resource"/>
|
||||
|
||||
<target name="classes" description="Build the Java tool">
|
||||
<mkdir dir="${classes.dir}"/>
|
||||
<javac srcdir="${src.dir}" destdir="${classes.dir}"
|
||||
target="1.6" encoding="UTF-8" includeAntRuntime="false"/>
|
||||
</target>
|
||||
|
||||
<target name="_checkLocalXml">
|
||||
<condition property="isLocalXml">
|
||||
<and>
|
||||
<available file="${basedir}/${current.xml}"/>
|
||||
<available file="${basedir}/${historic.xml}"/>
|
||||
</and>
|
||||
</condition>
|
||||
</target>
|
||||
|
||||
<target name="_localXml" depends="_checkLocalXml" if="isLocalXml">
|
||||
<echo message="Using local ISO 4217 XML data files"/>
|
||||
<copy file="${current.xml}" todir="${xml.dir}"/>
|
||||
<copy file="${historic.xml}" todir="${xml.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="_downloadXml" unless="isLocalXml">
|
||||
<echo message="Downloading ISO 4217 XML data files"/>
|
||||
<mkdir dir="${xml.dir}"/>
|
||||
<get src="${base.url}${current.xml}" dest="${xml.dir}"/>
|
||||
<get src="${base.url}${historic.xml}" dest="${xml.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="xmlData" depends="_localXml, _downloadXml" description="Prepare necessary ISO 4217 XML data files">
|
||||
</target>
|
||||
|
||||
<target name="check" depends="classes, xmlData" description="Verify if ICU's local mapping data is synchronized with the XML data">
|
||||
<java classname="com.ibm.icu.dev.tool.currency.Main"
|
||||
classpath="${classes.dir}"
|
||||
failonerror="true">
|
||||
<arg value="check"/>
|
||||
<arg value="${xml.dir}/${current.xml}"/>
|
||||
<arg value="${xml.dir}/${historic.xml}"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<target name="resource" depends="classes" description="Build ISO 4217 alpha-numeric code mapping data resource">
|
||||
<mkdir dir="${res.dir}"/>
|
||||
<java classname="com.ibm.icu.dev.tool.currency.Main"
|
||||
classpath="${classes.dir}"
|
||||
failonerror="true">
|
||||
<arg value="build"/>
|
||||
<arg value="${res.dir}"/>
|
||||
</java>
|
||||
<echo message="ISO 4217 numeric code mapping data was successfully created in ${res.dir}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="Delete build outputs">
|
||||
<delete dir="${out.dir}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
Loading…
Add table
Reference in a new issue