source: greenstone3/trunk/build.properties.in@ 19932

Last change on this file since 19932 was 19932, checked in by kjdon, 15 years ago

added compile.static and rearranged a bit

File size: 2.6 KB
Line 
1#### properties file for Greenstone3 building using ANT. See the README for more
2#### information
3
4## Tomcat installation
5# Set this to the internet/intranet name of the machine that Tomcat is/will be
6# run on. localhost is fine for accessing the server from the local machine,
7# but not remotely
8tomcat.server=localhost
9# The port number that tomcat is/will be run on
10tomcat.port=8080
11# Tomcat's shutdown port - this may need to be changed if you are running two or more Tomcats
12tomcat.shutdown.port=8005
13# If tomcat is already running, enter the path to the base directory here
14tomcat.installed.path=
15# uncomment the following if you have moved the greenstone3 web directory to tomcats webapps dir
16#web.home=${tomcat.installed.path}/webapps/greenstone3
17
18## Collection building options
19# uncomment if you don't want to have collection building enabled
20#disable.collection.building=true
21
22## Greenstone 3 server program options
23# does running the server automatically start up Tomcat and a browser
24server.auto.start=false
25# default servlet to start with
26server.default.servlet=/library
27
28##Browser setup
29browser.path=
30
31## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
32# The proxy server name
33proxy.host=
34# The proxy server port
35proxy.port=
36# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
37proxy.user=
38# A password to use when talking to the proxy server (optional, will prompt if not entered here)
39proxy.password=
40
41## java compilation properties - for javac
42# Should compilation include the debug option?
43compile.debug=true
44# Should compilation include the deprecation option?
45compile.deprecation=true
46# Should compilation include the optimize option?
47compile.optimize=true
48
49## should compilation be static?? - used for distributions
50#compile.static=true
51
52## windows c++ compilation
53# The following property does not help in build.xml.
54# The user needs to run Visual Studio's vcvars32.bat script from the
55# MSDOS prompt before compiling Greenstone3 (before "ant prepare install")
56#compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
57
58##Flax stuff##
59##uncomment if you want to install flax
60#install.flax=true
61flax.checkout.path=${flax.svn.root}/trunk/flaxmain
62
63##Web services related constants##
64base.webservice.name=SOAPServer
65##listing and description of all the web services deployable on GS3##
66web.services.list=${base.webservice.name} for Greenstone3's core web services, QBR${base.webservice.name} for Query, Browse and Retrieve services
Note: See TracBrowser for help on using the repository browser.