source: main/branches/64_bit_Greenstone/greenstone3/build.properties.in@ 23575

Last change on this file since 23575 was 22184, checked in by davidb, 14 years ago

Some initial work on being able to support Greenstone 3 without using JNI

File size: 3.1 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# Control whether or not JNI bindings are used
50# e.g. MG, MG++ and GDBM and the like
51# Setting this false means these components are not available to the install
52# The expectation is that collections will be build from 100% Java components:
53# e.g Lucene and JDBM
54#
55# Ant 1.7.1 and before only test for *existence* so this needs to be commented
56# in or out to control whether jni is used or not
57with.jni=true
58
59## Control if compilation of gs2 is static or not. Used, for example, for distributions
60# Same issue as 'with.jni' for how this gets used in ant 1.7.1 and before
61#compile.static=true
62
63
64## windows c++ compilation
65# The following property does not help in build.xml.
66# The user needs to run Visual Studio's vcvars32.bat script from the
67# MSDOS prompt before compiling Greenstone3 (before "ant prepare install")
68#compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
69
70##Flax stuff##
71##uncomment if you want to install flax
72#install.flax=true
73flax.checkout.path=${flax.svn.root}/trunk/flaxmain
74
75##Web services related constants##
76base.webservice.name=SOAPServer
77##listing and description of all the web services deployable on GS3##
78web.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.