1 <!-- 2 * 2016 and later: Unicode, Inc. and others. 3 * License & terms of use: http://www.unicode.org/copyright.html#License 4 --> 5 <!-- 6 ******************************************************************************* 7 * Copyright (C) 2009-2011, International Business Machines Corporation and * 8 * others. All Rights Reserved. * 9 ******************************************************************************* 10 --> 11 <project name="demos" default="build" basedir="."> 12 <property file="build-local.properties"/> 13 <property file="build.properties"/> 14 <import file="${shared.dir}/build/common-targets.xml"/> 15 16 <path id="javac.classpathref"> 17 <path refid="javac.classpathref.${ant.project.name}"/> 18 </path> 19 <property name="jar.name" value="icu4j-${ant.project.name}.jar"/> 20 <property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/> 21 22 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/> 23 24 <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/> 25 26 <target name="clean" depends="@clean" description="Clean up the build outputs"/> 27 28 <target name="compile" depends="@compile" description="Compile java source files"/> 29 30 <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/> 31 32 <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/> 33 34 <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/> 35 </project>