source: main/trunk/greenstone3/build.properties.in@ 23807

Last change on this file since 23807 was 23807, checked in by sjm84, 13 years ago

Created a property called gli.and.gems that will prevent gems and gli from being checked out and compiled

File size: 3.3 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## Controls whether or not we want GLI and GEMS to be checked out and compiled
60gems.and.gli=true
61
62## Control if compilation of gs2 is static or not. Used, for example, for distributions
63# Same issue as 'with.jni' for how this gets used in ant 1.7.1 and before
64#compile.static=true
65
66## Uncomment this line to enable compilation with the gnome-lib extension
67## The gnome-lib extension should be in the [gsdl3home]/ext directory
68#use.support.lib=true
69
70## windows c++ compilation
71# The following property does not help in build.xml.
72# The user needs to run Visual Studio's vcvars32.bat script from the
73# MSDOS prompt before compiling Greenstone3 (before "ant prepare install")
74#compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
75
76##Flax stuff##
77##uncomment if you want to install flax
78#install.flax=true
79flax.checkout.path=${flax.svn.root}/trunk/flaxmain
80
81##Web services related constants##
82base.webservice.name=SOAPServer
83##listing and description of all the web services deployable on GS3##
84web.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.