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