source: trunk/gsdl3/build.properties@ 10778

Last change on this file since 10778 was 10778, checked in by kjdon, 19 years ago

a couple of changes

  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 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
13compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
14
15## Tomcat installation
16#The name of the machine that Tomcat is/will be run on. If you are using a proxy, then you may need to set this to something other than localhost
17tomcat.server=localhost
18# The port number that tomcat is/will be run on
19tomcat.port=8080
20# If tomcat is already running, enter the path to the base directory here
21tomcat.installed.path=
22#uncomment the following if you have moved the greenstone3 web directory to tomcats webapps dir
23#web.home=${tomcat.installed.path}/webapps/greenstone3
24
25## Greenstone 2 collection building options
26#The path to Greenstone 2 if it is already installed
27#If you do not want to use Greenstone 2 style building at all, set this property to any non-empty string, e.g. xxx
28gsdl2.installed.path=
29
30## Relational database
31# set this to be non-empty if you are using an external mysql.
32mysql.installed.path=
33#change the following if the defaults are not correct
34mysql.server=localhost
35#port mysql should run on. Change if you already have mysql running on the default port
36mysql.port=3306
37#Should passwords be set for the root and greenstone mysql users?
38mysql.use.passwords=yes
39
40## Mysql user passwords: uncomment and set the following if you don't want to be prompted for them during installation
41#The root password for a local mysql installation
42#mysql.root.password=
43# The password for the gsdl3admin user (local and external mysql)
44#mysql.admin.password=
45# The password for the gsdl3reader user (local and external mysql)
46#mysql.reader.password=
47
48## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
49# The proxy server name
50proxy.host=
51# The proxy server port
52proxy.port=
53# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
54proxy.user=
55# A password to use when talking to the proxy server (optional, will prompt if not entered here)
56proxy.password=
57
58## Mac OS X specific stuff
59# set the path to your GDBM here
60gdbm.installed.path=
Note: See TracBrowser for help on using the repository browser.