source: greenstone3/trunk/build.properties@ 15239

Last change on this file since 15239 was 15239, checked in by davidb, 16 years ago

Default port had been changed to 9090, hostname no longer localhost. These are now back to there normal valuesbuild.properties

  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 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 run on. localhost is fine for accessing the server from the local machine, but not remotely
20tomcat.server=localhost
21# The port number that tomcat is/will be run on
22tomcat.port=8080
23# Tomcat's shutdown port - this may need to be changed if you are running two or more Tomcats
24tomcat.shutdown.port=8005
25# If tomcat is already running, enter the path to the base directory here
26tomcat.installed.path=
27#uncomment the following if you have moved the greenstone3 web directory to tomcats webapps dir
28#web.home=${tomcat.installed.path}/webapps/greenstone3
29
30## Collection building options
31# uncomment if you don't want to have collection building enabled
32#disable.collection.building=true
33
34## Greenstone 3 server program options
35# does running the server automatically start up Tomcat and a browser
36server.auto.start=false
37# default servlet to start with
38server.default.servlet=/library
39
40##Browser setup
41browser.path=
42
43## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
44# The proxy server name
45proxy.host=
46# The proxy server port
47proxy.port=
48# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
49proxy.user=
50# A password to use when talking to the proxy server (optional, will prompt if not entered here)
51proxy.password=
52
53## Mac OS X specific stuff
54# set the path to your GDBM here
55#install.gdbm=true
56#gdbm.installed.path=${gdbm.home}
57
58##Flax stuff##
59##uncomment if you want to install flax
60#install.flax=true
Note: See TracBrowser for help on using the repository browser.