2009-06-16 05:52:23 +00:00
|
|
|
<!--
|
|
|
|
*******************************************************************************
|
|
|
|
* Copyright (C) 2009, International Business Machines Corporation and *
|
|
|
|
* others. All Rights Reserved. *
|
|
|
|
*******************************************************************************
|
|
|
|
-->
|
|
|
|
<project name="core-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="javac.classpathref.${ant.project.name}"/>
|
|
|
|
</path>
|
|
|
|
<property name="jar.file" value="${icu4j.core-tests.jar}"/>
|
|
|
|
|
|
|
|
<target name="build" depends="compile, copy, 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-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="copy-test-data" description="Extract pre-built ICU core test data files and copy them to the project's binary directory">
|
|
|
|
<unjar src="${icu4j.testdata.jar}" dest="${bin.dir}">
|
|
|
|
<patternset>
|
|
|
|
<exclude name="**/*.cnv"/>
|
2009-07-15 21:22:03 +00:00
|
|
|
<exclude name="**/conversion.res"/>
|
2009-06-16 05:52:23 +00:00
|
|
|
</patternset>
|
|
|
|
</unjar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
2009-07-07 19:24:00 +00:00
|
|
|
</project>
|