comparison build.xml @ 4:7b6200980805

Pull system dependent properties out into build.properties, and allow users to override these properties with a user.properties file.
author dbrosius@mebigfatguy.com
date Thu, 14 May 2009 11:10:34 -0400
parents 47767be3a265
children e11623cfc457
comparison
equal deleted inserted replaced
3:d3ec5ebc3dba 4:7b6200980805
1 <project name="Blitz JavaSpaces 2.0 FCS" default="init"> 1 <project name="Blitz JavaSpaces 2.0 FCS" default="init">
2 <description> 2 <description>
3 Main build file for Blitz space implementation running on Db-Java 3 Main build file for Blitz space implementation running on Db-Java
4 </description> 4 </description>
5
6 <property file="${basedir}/user.properties" />
7 <property file="${basedir}/build.properties" />
8
5 <!-- set global properties for this build --> 9 <!-- set global properties for this build -->
6 <property name="src" location="src"/> 10 <property name="src" location="src"/>
7 <property name="testsrc" location="test"/> 11 <property name="testsrc" location="test"/>
8 <property name="installer_base" location="installer"/> 12 <property name="installer_base" location="installer"/>
9 <property name="build" location="build"/> 13 <property name="build" location="build"/>
10 <property name="installer_build" location="installer_build"/> 14 <property name="installer_build" location="installer_build"/>
11 <property name="db_root" location="dbjava/je-3.2.68/"/> 15 <property name="db_root" location="dbjava/je-3.2.68/"/>
12 <property name="bdb" location="dbjava/je.jar"/> 16 <property name="bdb" location="dbjava/je.jar"/>
13 <property name="jini_root" location="/Users/dan/jini/jini2_1"/> 17 <property name="jini_root" location="${JINI_HOME}"/>
14 <property name="jdk_root" location="/usr/local/java"/> 18 <property name="jdk_root" location="${JDK_HOME}"/>
15 <property name="stats" location="examples/statsclient"/> 19 <property name="stats" location="examples/statsclient"/>
16 <property name="statsbuild" location="examples/statsclient"/> 20 <property name="statsbuild" location="examples/statsclient"/>
17 <property name="hello" location="examples/helloworld"/> 21 <property name="hello" location="examples/helloworld"/>
18 <property name="hellobuild" location="examples/"/> 22 <property name="hellobuild" location="examples/"/>
19 <property name="sizer" location="examples/entrysizer"/> 23 <property name="sizer" location="examples/entrysizer"/>