Lines Matching full:project
7 <project name="tools" default="build" basedir=".">
13 <path refid="javac.classpathref.${ant.project.name}"/>
15 <property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
16 <property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
18 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/>
20 <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/>
26 <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/>
28 <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/>
30 <target name="src-jar" depends="@src-jar" description="Create the project's source jar file"/>
31 </project