Home | History | Annotate | Download | only in langdata
      1 <!--
      2 *******************************************************************************
      3 * Copyright (C) 2009-2015, International Business Machines Corporation and
      4 * others. All Rights Reserved.
      5 *******************************************************************************
      6 -->
      7 <project name="langdata" default="build" basedir=".">
      8     <property file="build-local.properties"/>
      9     <property file="build.properties"/>
     10     <import file="${shared.dir}/build/common-targets.xml"/>
     11 
     12     <path id="javac.classpathref">
     13         <path refid="javac.classpathref.${ant.project.name}"/>
     14     </path>
     15     <property name="jar.file" value="${icu4j.langdata.jar}"/>
     16     <property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
     17     <property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
     18 
     19     <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/>
     20 
     21     <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/>
     22 
     23     <target name="clean" depends="@clean" description="Clean up the build outputs"/>
     24 
     25     <target name="compile" depends="@compile" description="Compile java source files"/>
     26 
     27     <target name="copy" depends="@copy, copy-data" description="Copy non-java runtime files to the project's binary directory"/>
     28 
     29     <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/>
     30 
     31     <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
     32 
     33     <target name="findbugs" depends="@findbugs" description="Search the project for possible defects using FindBugs." />
     34 
     35     <target name="copy-data" unless="icu4c.data.path" description="Extract pre-built ICU language data files and copy them to the project's binary directory">
     36         <unjar src="${icu4j.data.jar}" dest="${bin.dir}">
     37             <patternset includes="${icu4j.data.path}/lang/**"/>
     38         </unjar>
     39 
     40         <antcall target="@full-locale-names">
     41             <param name="res.dir" value="${bin.dir}/${icu4j.data.path}/lang"/>
     42         </antcall>
     43     </target>
     44 
     45 </project>
     46