~ubuntu-branches/debian/sid/tomcat6/sid

1 by Paul Cager
Import upstream version 6.0.16
1
# -----------------------------------------------------------------------------
2
# Licensed to the Apache Software Foundation (ASF) under one or more
3
# contributor license agreements.  See the NOTICE file distributed with
4
# this work for additional information regarding copyright ownership.
5
# The ASF licenses this file to You under the Apache License, Version 2.0
6
# (the "License"); you may not use this file except in compliance with
7
# the License.  You may obtain a copy of the License at
8
#
9
#     http://www.apache.org/licenses/LICENSE-2.0
10
#
11
# Unless required by applicable law or agreed to in writing, software
12
# distributed under the License is distributed on an "AS IS" BASIS,
13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
# See the License for the specific language governing permissions and
15
# limitations under the License.
16
# -----------------------------------------------------------------------------
17
# build.properties.sample
18
#
19
# This is an example "build.properties" file, used to customize building 
20
# Tomcat for your local environment.  It defines the location of all external
21
# modules that Tomcat depends on.  Copy this file to "build.properties"
22
# in the top-level source directory, and customize it as needed.
23
# -----------------------------------------------------------------------------
24
1.2.3 by Ludovic Claude
Import upstream version 6.0.24
25
# ----- Version Control Flags -----
1 by Paul Cager
Import upstream version 6.0.16
26
version.major=6
27
version.minor=0
1.2.11 by Emmanuel Bourg
Import upstream version 6.0.41
28
version.build=41
1.2.10 by Emmanuel Bourg
Import upstream version 6.0.39
29
version.patch=0
30
version.suffix=
1 by Paul Cager
Import upstream version 6.0.16
31
32
# ----- Default Base Path for Dependent Packages -----
33
# Please note this path must be absolute, not relative,
34
# as it is referenced with different working directory
35
# contexts by the various build scripts.
36
base.path=/usr/share/java
37
#base.path=C:/path/to/the/repository
38
#base.path=/usr/local
39
40
compile.source=1.5
41
compile.target=1.5
42
compile.debug=true
43
1.2.7 by tony mancill
Import upstream version 6.0.33
44
base-apache.loc.1=http://www.apache.org/dist
45
base-apache.loc.2=http://archive.apache.org/dist
46
base-commons.loc.1=${base-apache.loc.1}/commons
47
base-commons.loc.2=${base-apache.loc.2}/commons
48
base-tomcat.loc.1=${base-apache.loc.1}/tomcat
49
base-tomcat.loc.2=${base-apache.loc.2}/tomcat
50
1.1.1 by Thierry Carrez
Import upstream version 6.0.18
51
base-sf.loc=http://downloads.sourceforge.net
1.2.10 by Emmanuel Bourg
Import upstream version 6.0.39
52
# repo.maven.apache.org is the same as repo2.maven.org
53
base-maven.loc=http://repo.maven.apache.org/maven2
1 by Paul Cager
Import upstream version 6.0.16
54
55
# ----- Commons Logging, version 1.1 or later -----
1.2.6 by tony mancill
Import upstream version 6.0.32
56
# If this version is updated, check the versions required for the deps
57
# - avalon-framework
58
# - log4j
59
# - logkit
60
# - servletapi
61
commons-logging.version=1.1.1
62
commons-logging.home=${base.path}/commons-logging-${commons-logging.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
63
commons-logging-src.loc.1=${base-commons.loc.1}/logging/source/commons-logging-${commons-logging.version}-src.tar.gz
64
commons-logging-src.loc.2=${base-commons.loc.2}/logging/source/commons-logging-${commons-logging.version}-src.tar.gz
1.2.6 by tony mancill
Import upstream version 6.0.32
65
commons-logging-src.tar.gz=${commons-logging.home}/commons-logging-${commons-logging.version}-src.tar.gz
66
67
# ----- Avalon Framework (required by commons logging) -----
68
avalon-framework.version=4.1.3
69
avalon-framework.home=${base.path}/avalon-framework-${avalon-framework.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
70
avalon-framework.loc=${base-maven.loc}/avalon-framework/avalon-framework/${avalon-framework.version}/avalon-framework-${avalon-framework.version}.jar
1.2.6 by tony mancill
Import upstream version 6.0.32
71
avalon-framework.jar=${avalon-framework.home}/avalon-framework-${avalon-framework.version}.jar
72
73
# ----- log4j (required by commons logging) -----
74
log4j.version=1.2.12
75
log4j.home=${base.path}/log4j-${log4j.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
76
log4j.loc=${base-maven.loc}/log4j/log4j/${log4j.version}/log4j-${log4j.version}.jar
1.2.6 by tony mancill
Import upstream version 6.0.32
77
log4j.jar=${log4j.home}/log4j-${log4j.version}.jar
78
79
# ----- logkit (required by commons logging) -----
80
logkit.version=1.0.1
81
logkit.home=${base.path}/logkit-${logkit.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
82
logkit.loc=${base-maven.loc}/logkit/logkit/${logkit.version}/logkit-${logkit.version}.jar
1.2.6 by tony mancill
Import upstream version 6.0.32
83
logkit.jar=${logkit.home}/logkit-${logkit.version}.jar
84
85
# ----- servletapi (required by commons logging) -----
86
servletapi.version=2.3
87
servletapi.home=${base.path}/servletapi-${servletapi.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
88
servletapi.loc=${base-maven.loc}/servletapi/servletapi/${servletapi.version}/servletapi-${servletapi.version}.jar
1.2.6 by tony mancill
Import upstream version 6.0.32
89
servletapi.jar=${servletapi.home}/servletapi-${servletapi.version}.jar
90
    
91
# ----- Webservices - JAX RPC -----
92
jaxrpc-lib.version=1.1-rc4
93
jaxrpc-lib.home=${base.path}/jaxrpc-${jaxrpc-lib.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
94
jaxrpc-lib.loc=${base-maven.loc}/geronimo-spec/geronimo-spec-jaxrpc/${jaxrpc-lib.version}/geronimo-spec-jaxrpc-${jaxrpc-lib.version}.jar
1.2.6 by tony mancill
Import upstream version 6.0.32
95
jaxrpc-lib.jar=${jaxrpc-lib.home}/geronimo-spec-jaxrpc-${jaxrpc-lib.version}.jar
96
97
# ----- Webservices - WSDL4J -----
98
wsdl4j-lib.version=1.6.1
99
wsdl4j-lib.home=${base.path}/wsdl4j-${wsdl4j-lib.version}
1.2.7 by tony mancill
Import upstream version 6.0.33
100
wsdl4j-lib.loc=${base-maven.loc}/wsdl4j/wsdl4j/${wsdl4j-lib.version}/wsdl4j-${wsdl4j-lib.version}.jar
1.2.6 by tony mancill
Import upstream version 6.0.32
101
wsdl4j-lib.jar=${wsdl4j-lib.home}/wsdl4j-${wsdl4j-lib.version}.jar
1 by Paul Cager
Import upstream version 6.0.16
102
103
# ----- Eclipse JDT, version 3.2 or later -----
1.2.6 by tony mancill
Import upstream version 6.0.32
104
# When updating this, also need to update:
105
# - noTldJars in o.a.c.startup.TldConfig
106
# - noTldJars in o.a.j.compiler.TldLocationsCache
107
# - res/maven/jasper.pom
108
# - eclipse.classpath
1.2.10 by Emmanuel Bourg
Import upstream version 6.0.39
109
jdt.version=4.3.1
110
jdt.release=R-4.3.1-201309111000
1.2.6 by tony mancill
Import upstream version 6.0.32
111
jdt.home=${base.path}/ecj-${jdt.version}
112
jdt.jar=${jdt.home}/ecj-${jdt.version}.jar
113
# The download will be moved to the archive area eventually. We are taking care of that in advance.
114
# Note older JARs were called ecj.jar. Newer JARs are called ecj-${jdt.version}.jar
1.2.9 by tony mancill
Import upstream version 6.0.37
115
jdt.loc.1=http://archive.eclipse.org/eclipse/downloads/drops4/${jdt.release}/ecj-${jdt.version}.jar
116
jdt.loc.2=http://download.eclipse.org/eclipse/downloads/drops4/${jdt.release}/ecj-${jdt.version}.jar
1 by Paul Cager
Import upstream version 6.0.16
117
118
# ----- Tomcat native library -----
1.2.11 by Emmanuel Bourg
Import upstream version 6.0.41
119
tomcat-native.version=1.1.30
1.1.1 by Thierry Carrez
Import upstream version 6.0.18
120
tomcat-native.home=${base.path}/tomcat-native-${tomcat-native.version}
1 by Paul Cager
Import upstream version 6.0.16
121
tomcat-native.tar.gz=${tomcat-native.home}/tomcat-native.tar.gz
1.2.7 by tony mancill
Import upstream version 6.0.33
122
tomcat-native.loc.1=${base-tomcat.loc.1}/tomcat-connectors/native/${tomcat-native.version}/source/tomcat-native-${tomcat-native.version}-src.tar.gz
123
tomcat-native.loc.2=${base-tomcat.loc.2}/tomcat-connectors/native/${tomcat-native.version}/source/tomcat-native-${tomcat-native.version}-src.tar.gz
1.2.9 by tony mancill
Import upstream version 6.0.37
124
tomcat-native.win.1=${base-tomcat.loc.1}/tomcat-connectors/native/${tomcat-native.version}/binaries/tomcat-native-${tomcat-native.version}-win32-bin.zip
125
tomcat-native.win.2=${base-tomcat.loc.2}/tomcat-connectors/native/${tomcat-native.version}/binaries/tomcat-native-${tomcat-native.version}-win32-bin.zip
1 by Paul Cager
Import upstream version 6.0.16
126
127
# ----- Commons DBCP, version 1.1 or later -----
1.2.5 by Torsten Werner
Import upstream version 6.0.28
128
commons-dbcp.version=1.3
129
commons-dbcp.home=${base.path}/commons-dbcp-${commons-dbcp.version}-src
1.2.7 by tony mancill
Import upstream version 6.0.33
130
commons-dbcp-src.loc.1=${base-commons.loc.1}/dbcp/source/commons-dbcp-${commons-dbcp.version}-src.tar.gz
131
commons-dbcp-src.loc.2=${base-commons.loc.2}/dbcp/source/commons-dbcp-${commons-dbcp.version}-src.tar.gz
1 by Paul Cager
Import upstream version 6.0.16
132
133
# ----- Commons Pool, version 1.1 or later -----
1.2.9 by tony mancill
Import upstream version 6.0.37
134
commons-pool.version=1.5.7
1.2.5 by Torsten Werner
Import upstream version 6.0.28
135
commons-pool.home=${base.path}/commons-pool-${commons-pool.version}-src
1.2.7 by tony mancill
Import upstream version 6.0.33
136
commons-pool-src.loc.1=${base-commons.loc.1}/pool/source/commons-pool-${commons-pool.version}-src.tar.gz
137
commons-pool-src.loc.2=${base-commons.loc.2}/pool/source/commons-pool-${commons-pool.version}-src.tar.gz
1 by Paul Cager
Import upstream version 6.0.16
138
139
# ----- NSIS, version 2.0 or later -----
1.2.5 by Torsten Werner
Import upstream version 6.0.28
140
nsis.home=${base.path}/nsis-2.46
1 by Paul Cager
Import upstream version 6.0.16
141
nsis.exe=${nsis.home}/makensis.exe
142
nsis.installoptions.dll=${nsis.home}/Plugins/InstallOptions.dll
143
nsis.nsexec.dll=${nsis.home}/Plugins/nsExec.dll
144
nsis.nsisdl.dll=${nsis.home}/Plugins/NSISdl.dll
1.2.5 by Torsten Werner
Import upstream version 6.0.28
145
nsis.loc=${base-sf.loc}/nsis/nsis-2.46.zip
1 by Paul Cager
Import upstream version 6.0.16
146
147
# ----- Commons Daemon, version 1.0-Alpha or later -----
1.2.9 by tony mancill
Import upstream version 6.0.37
148
commons-daemon.version=1.0.15
1.2.5 by Torsten Werner
Import upstream version 6.0.28
149
commons-daemon.home=${base.path}/commons-daemon-${commons-daemon.version}
150
commons-daemon.jar=${commons-daemon.home}/commons-daemon-${commons-daemon.version}.jar
151
commons-daemon.native.win.home=${commons-daemon.home}/windows
152
commons-daemon.native.win.mgr.exe=${commons-daemon.native.win.home}/prunmgr.exe
153
commons-daemon.native.src.tgz=${commons-daemon.home}/commons-daemon-${commons-daemon.version}-native-src.tar.gz
154
commons-daemon.native.win.zip=${commons-daemon.home}/commons-daemon-${commons-daemon.version}-bin-windows.zip
1.2.7 by tony mancill
Import upstream version 6.0.33
155
commons-daemon.bin.loc.1=${base-commons.loc.1}/daemon/binaries/commons-daemon-${commons-daemon.version}-bin.tar.gz
156
commons-daemon.bin.loc.2=${base-commons.loc.2}/daemon/binaries/commons-daemon-${commons-daemon.version}-bin.tar.gz
157
commons-daemon.native.src.loc.1=${base-commons.loc.1}/daemon/source/commons-daemon-${commons-daemon.version}-native-src.tar.gz
158
commons-daemon.native.src.loc.2=${base-commons.loc.2}/daemon/source/commons-daemon-${commons-daemon.version}-native-src.tar.gz
159
commons-daemon.native.win.loc.1=${base-commons.loc.1}/daemon/binaries/windows/commons-daemon-${commons-daemon.version}-bin-windows.zip
160
commons-daemon.native.win.loc.2=${base-commons.loc.2}/daemon/binaries/windows/commons-daemon-${commons-daemon.version}-bin-windows.zip