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

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

removed gdbm stuff, modified some comments

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