comparison properties.xml @ 25:cbd67b1100d8

Initial commit of the first prototype.
author Raimund Renkert <rrenkert@intevation.de>
date Fri, 08 Apr 2011 11:47:59 +0200
parents
children 50a6d2d63885
comparison
equal deleted inserted replaced
24:c0060abb7457 25:cbd67b1100d8
1 <!-- ========================================= -->
2 <!-- load environment variables -->
3 <!-- ========================================= -->
4 <property environment="env"/>
5 <condition property="runtime.home" value="${env.AGSENGINEJAVA}">
6 <available file="arcobjects.jar" filepath="${env.AGSENGINEJAVA}/java/lib" />
7 </condition>
8 <condition property="runtime.home" value="${env.AGSDESKTOPJAVA}">
9 <not>
10 <isset property="runtime.home"/>
11 </not>
12 </condition>
13 <property name="devkit.home" value="${env.AGSDEVKITJAVA}" />
14 <property name="ant.home" value="${devkit.home}/java/tools/ant"/>
15
16 <!-- ========================================= -->
17 <!-- directory mappings -->
18 <!-- ========================================= -->
19 <property name="root.dir" location="${basedir}"/>
20 <basename property="sample.dir" file="${basedir}" />
21 <property name="src.dir" location="src"/>
22 <property name="build.dir" location="build"/>
23 <property name="class.dir" location="${build.dir}/classes"/>
24 <property name="dist.dir" location="${build.dir}/dist"/>
25 <property name="libs.dir" location="lib"/>
26
27 <!-- ========================================= -->
28 <!-- jar file mapping -->
29 <!-- ========================================= -->
30 <property name="arcobjects.jar" location="${runtime.home}/java/lib/arcobjects.jar"/>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)