blob: 3a6b0dfacf861ec3006c7294753e39f36b8e7a26 [file] [log] [blame]
<!--
********************************************************************************
* Copyright (C) 2016 and later: Unicode, Inc. and others. *
* License & terms of use: http://www.unicode.org/copyright.html *
********************************************************************************
*******************************************************************************
* Copyright (C) 2009-2011, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
-->
<project name="translit-tests" 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="junit.jars"/>
<path refid="javac.classpathref.${ant.project.name}"/>
</path>
<property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
<property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
<target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/>
<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-translit-test-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"/>
<target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
<target name="copy-translit-test-data" description="Extract pre-built ICU collation test data files and copy them to the project's binary directory">
<copy todir="${bin.dir}">
<fileset dir="${icu4j.translit-tests.dir}/src">
<include name="com/ibm/icu/dev/test/translit/langtagRegex.txt"/>
</fileset>
</copy>
</target>
</project>