source: trunk/gsdl3/build.properties@ 10679

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

added a gdbm path for macos

  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1#### properties file for GSDL3 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 gsdl3 web directory to tomcats webapps dir
23#web.home=${tomcat.installed.path}/webapps/gsdl3
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
35mysql.port=3306
36#Should passwords be set for the root and greenstone mysql users?
37mysql.use.passwords=yes
38
39## Mysql user passwords: uncomment and set the following if you don't want to be prompted for them during installation
40#The root password for a local mysql installation
41#mysql.root.password=
42# The password for the gsdl3admin user (local and external mysql)
43#mysql.admin.password=
44# The password for the gsdl3reader user (local and external mysql)
45#mysql.reader.password=
46
47## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
48# The proxy server name
49proxy.host=
50# The proxy server port
51proxy.port=
52# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
53proxy.user=
54# A password to use when talking to the proxy server (optional, will prompt if not entered here)
55proxy.password=
56
57## Mac OS X specific stuff
58# set the path to your GDBM here
59gdbm.installed.path=
Note: See TracBrowser for help on using the repository browser.