This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.xml
57 lines (50 loc) · 2.1 KB
/
global.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!--
Ant build file for deegree.
Global properties. Edit this file ONLY to apply new properties
$Workfile: global.xml $, $Author: jmays $
$Revision: 21182 $, $Date: 2009-12-02 16:54:56 +0100 (Mi, 02. Dez 2009) $
-->
<!--
set global properties for this build
it's recommended to keep these definitions
-->
<property name="app.name" value="deegree2" />
<property name="src" value="${basedir}/src" />
<property name="build" value="${basedir}/classes" />
<property name="dist" value="${basedir}/dist" />
<property name="dist.lib" value="${dist}/lib" />
<property name="lib.jar" value="${app.name}.jar" />
<property name="lib" value="lib" />
<!-- Uncomment following property and below in the path declaration ("set build classpath") if you would like to add another lib directory -->
<!--property name="optional.libs" value="/path/to/optional_libs"/-->
<property name="doc.base" value="${basedir}/docs" />
<property name="doc" value="${doc.base}/api" />
<property name="version.props" value="${src}/org/deegree/framework/version/version.properties"/>
<property name="buildId.props" value="${src}/org/deegree/framework/version/buildId.properties"/>
<!-- all properties are read from the build.properties file -->
<property file="build.properties"/>
<!-- version + buildId properties -->
<property file="${version.props}"/>
<property file="${buildId.props}"/>
<!-- set build classpath -->
<path id="build.path">
<fileset dir="${lib}" >
<include name="**/*.jar" />
</fileset>
<!-- fileset dir="${optional.libs}" >
<include name="**/*.jar" />
</fileset-->
</path>
<!-- set dependency classpath -->
<path id="dependency.path">
<fileset dir="${lib}" >
<include name="**/*.jar" />
<exclude name="${exclude.dependency.jars}"/>
</fileset>
</path>
<!-- ant contrib optional task def -->
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="${ant.home}/lib/ant-contrib.jar" />
</classpath>
</taskdef>