1
|
# Ant build properties files for the metacat build
|
2
|
|
3
|
#Version of this build. This needs to be a dotted numeric version. For
|
4
|
#instance 1.9.1 is okay. 1.9.1_rc1 is not.
|
5
|
metacat.version=2.5.0
|
6
|
|
7
|
#This is for packaging purposes. leave it blank for final production release.
|
8
|
metacat.releaseCandidate=
|
9
|
|
10
|
# Tomcat dev deployment directory
|
11
|
# build.tomcat.dir=/usr/local/tomcat
|
12
|
build.tomcat.dir=/Users/leinfelder/tools/apache-tomcat-6
|
13
|
# install ant target uses this to determine where to drop
|
14
|
# the war file in an installation. Test classes will use
|
15
|
# this value to find metacat.properties
|
16
|
app.deploy.dir=/Users/leinfelder/tools/apache-tomcat-6/webapps
|
17
|
#app.deploy.dir=/tmp
|
18
|
|
19
|
# CVS access to retrieve latest EML, seek and utilities
|
20
|
cvsroot=:ext:${env.USER}@cvs.ecoinformatics.org:/cvs
|
21
|
|
22
|
## metacat.context will be used to name war
|
23
|
metacat.context=metacat
|
24
|
workflowscheduler.context=workflowscheduler
|
25
|
authority.context=authority
|
26
|
|
27
|
# Server Properties
|
28
|
http.protocol=http
|
29
|
config.lsidauthority=ecoinformatics.org
|
30
|
|
31
|
# SCW: Set the cgi-user, either here or in scripts to properly
|
32
|
# set the permissions on the temporary folder; cgi-writable files
|
33
|
cgi-user=www-data
|
34
|
|
35
|
#Turn off or on for timed replication
|
36
|
#valide value is true or false
|
37
|
timedreplication=false
|
38
|
|
39
|
# The time for starting first timed replication if timedreplication is on
|
40
|
# The value should be in SHORT format (e.g. 2:00 AM) without date
|
41
|
# The first timed replication will start at the setting time which is
|
42
|
# shortest to the tomcat start time.
|
43
|
# Fox example, if the setting is 2:00 AM and tomcat was started at 8:00 AM.
|
44
|
# the first timed replication will start at 2:00 AM in the second day
|
45
|
# If the setting is 2:00 PM and tomcat was started at 8:00 AM, the first
|
46
|
# replication will start at 2:00 PM in the same day.
|
47
|
firsttimedreplication=10:00 PM
|
48
|
|
49
|
# The interval to next timed replication if timedreplication is on
|
50
|
# The value is in millisecond and default value is 48 hours
|
51
|
timedreplicationinterval=172800000
|
52
|
|
53
|
forcereplicationwaitingtime=30000
|
54
|
|
55
|
## Additional configuration options
|
56
|
# you probably don't want or need to change these
|
57
|
config.metadataLabelLsid=${config.lsidauthority}
|
58
|
build.dir=build
|
59
|
lsid.build.dir=${build.dir}/lsid
|
60
|
lib.dir=lib
|
61
|
lsid.lib.dir=${lib.dir}/lsid_lib
|
62
|
lsid.classes.dir=edu/ucsb/nceas/metacat/lsid
|
63
|
conf.dir=lib/lsid_conf
|
64
|
services.dir=${conf.dir}/services
|
65
|
webinf.dir=${conf.dir}/WEB-INF
|
66
|
|
67
|
compile.debug=true
|
68
|
compile.deprecation=false
|
69
|
compile.optimize=true
|
70
|
|
71
|
# Flag to install ecogird or not. Possible values are true or false
|
72
|
install.ecogrid=true
|
73
|
|
74
|
# Flag to make perl code or not. Possible values are true or false
|
75
|
make.perl.code=true
|
76
|
|
77
|
#ecogrid.hostname=localhost
|
78
|
|
79
|
# The metacat current dir's abolute value. If you set install.ecogrid=false, this variable
|
80
|
# do NOT need to be configured
|
81
|
#metacat.dir=/home/daigle/workspace/metacat
|
82
|
|
83
|
maven.home=/usr/share/maven
|