blob: 96db912e82b999436ac607be6036a11168d4ad1b (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="tools/antipede/resources/stylesheets/properties.xsl"?>
<!-- Build properties - these override any property specified in the build -->
<properties>
<!-- Properties for core Ant tasks-->
<ant>
<XmlLogger>
<stylesheet
uri="./tools/antipede/resources/stylesheets/log.xsl" />
</XmlLogger>
</ant>
<XmlLogger
file="log.xml" />
<!-- Properties of the build -->
<build>
<!-- What to tell the compiler -->
<compiler
emacs="on"
warnings="true"
pedantic="false"
depend="true"
fulldepend="true"
debug="on"
optimize="off"
deprecation="on"
nowarn="off"
type="classic"
vm="1.2" />
</build>
<centipede>
<tools>
<cents>
<forrest-cent>
<!-- available skins:
basic
jakarta-site
avalon-site
scarab-site
xml-apache-site
forrest-site (Work In Progress)
-->
<skin
name="avalon-site">
<navlinks>
<link1
href="http://www.apache.org/">apache.org</link1>
<link2
href="http://jakarta.apache.org/">jakarta.apache.org</link2>
<link3
href="http://jakarta.apache.org/poi/">jakarta.apache.org/poi</link3>
</navlinks>
<logo>
<group
src="images/group-logo.gif"
href="http://jakarta.apache.org" />
<project
src="images/project-logo.gif"
href="http://jakarta.apache.org/poi/" />
</logo>
</skin>
</forrest-cent>
</cents>
</tools>
</centipede>
</properties>
|