diff options
author | Brent Eagles <brent@zeroc.com> | 2005-02-21 02:47:52 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-02-21 02:47:52 +0000 |
commit | bd02a016bfd0712f6ffdcce46311e88df4f29a66 (patch) | |
tree | ff0ffa2827a77d0e109b80d04997c8b823b7f6b4 /java/demo/Ice/nested | |
parent | Fixed bug in getWithoutSuffix(). It was returning "a/b" for a path such as (diff) | |
download | ice-bd02a016bfd0712f6ffdcce46311e88df4f29a66.tar.bz2 ice-bd02a016bfd0712f6ffdcce46311e88df4f29a66.tar.xz ice-bd02a016bfd0712f6ffdcce46311e88df4f29a66.zip |
Removing usage of import task from the demo build.xml files and replacing
with XML entity include type of statements.
Diffstat (limited to 'java/demo/Ice/nested')
-rw-r--r-- | java/demo/Ice/nested/build.xml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/java/demo/Ice/nested/build.xml b/java/demo/Ice/nested/build.xml index 82e0a045370..102c1cbd006 100644 --- a/java/demo/Ice/nested/build.xml +++ b/java/demo/Ice/nested/build.xml @@ -9,15 +9,22 @@ ********************************************************************** --> +<!DOCTYPE project [ +<!ENTITY common SYSTEM "file:../../../config/common.xml"> +]> + <project name="demo_Ice_value" default="all" basedir="."> <!-- set global properties for this build --> <property name="top.dir" value="../../.."/> - <import file="${top.dir}/config/common.xml"/> + + <!-- Include common definitions --> + &common; + <property name="class.dir" value="classes"/> <property name="generated.dir" value="generated"/> - <target name="init"> + <target name="init" depends="config-init"> <!-- Create the time stamp --> <tstamp/> </target> |