2009-12-11 20:59:29 +00:00
|
|
|
<!--
|
|
|
|
*******************************************************************************
|
2010-06-11 17:02:51 +00:00
|
|
|
* Copyright (C) 2009-2010, International Business Machines Corporation and *
|
2009-12-11 20:59:29 +00:00
|
|
|
* others. All Rights Reserved. *
|
|
|
|
*******************************************************************************
|
|
|
|
-->
|
|
|
|
<project name="currdata" default="build" basedir=".">
|
|
|
|
<property file="build-local.properties"/>
|
|
|
|
<property file="build.properties"/>
|
|
|
|
<import file="${shared.dir}/build/common-targets.xml"/>
|
|
|
|
|
|
|
|
<path id="javac.classpathref">
|
|
|
|
<path refid="javac.classpathref.${ant.project.name}"/>
|
|
|
|
</path>
|
2010-06-11 17:02:51 +00:00
|
|
|
<property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
|
|
|
|
<property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
|
2009-12-11 20:59:29 +00:00
|
|
|
|
2010-06-11 17:02:51 +00:00
|
|
|
<target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/>
|
2009-12-11 20:59:29 +00:00
|
|
|
|
|
|
|
<target name="build-all" depends="@build-all" description="Build the project including all dependencies"/>
|
|
|
|
|
|
|
|
<target name="clean" depends="@clean" description="Clean up the build outputs"/>
|
|
|
|
|
|
|
|
<target name="compile" depends="@compile" description="Compile java source files"/>
|
|
|
|
|
|
|
|
<target name="copy" depends="@copy, copy-data" description="Copy non-java runtime files to the project's binary directory"/>
|
|
|
|
|
|
|
|
<target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/>
|
|
|
|
|
2010-06-11 17:02:51 +00:00
|
|
|
<target name="src-jar" depends="@src-jar" description="Create the proeject's source jar file"/>
|
|
|
|
|
2009-12-11 20:59:29 +00:00
|
|
|
<target name="copy-data" description="Extract pre-built ICU currency data files and copy them to the project's binary directory">
|
|
|
|
<unjar src="${icu4j.data.jar}" dest="${bin.dir}">
|
|
|
|
<patternset includes="**/curr/*"/>
|
|
|
|
</unjar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|