~ubuntu-branches/ubuntu/vivid/icu4j-4.4/vivid

« back to all changes in this revision

Viewing changes to demos/build.xml

  • Committer: Bazaar Package Importer
  • Author(s): Niels Thykier
  • Date: 2011-08-02 15:50:33 UTC
  • Revision ID: james.westby@ubuntu.com-20110802155033-itjzsl21y2lqdonn
Tags: upstream-4.4.2
ImportĀ upstreamĀ versionĀ 4.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
*******************************************************************************
 
3
* Copyright (C) 2009, International Business Machines Corporation and         *
 
4
* others. All Rights Reserved.                                                *
 
5
*******************************************************************************
 
6
-->
 
7
<project name="demos" 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.demos.jar}"/>
 
16
 
 
17
    <target name="build" depends="compile, copy, jar" description="Build the project"/>
 
18
 
 
19
    <target name="build-all" depends="@build-all" description="Build the project including all dependencies"/>
 
20
 
 
21
    <target name="clean" depends="@clean" description="Clean up the build outputs"/>
 
22
 
 
23
    <target name="compile" depends="@compile" description="Compile java source files"/>
 
24
 
 
25
    <target name="copy" depends="@copy" description="Copy non-java runtime files to the project's binary directory"/>
 
26
 
 
27
    <target name="jar" depends="compile, copy, @jar" description="Create the project's jar file"/>
 
28
 
 
29
</project>
 
 
b'\\ No newline at end of file'