Project

General

Profile

1
# Ant build properties files for the metacat build
2

    
3
#Version of this build
4
metacat.version=1.9.0
5

    
6
# Tomcat dev deployment directory
7
# build.tomcat.dir=/usr/local/tomcat
8
build.tomcat.dir=/usr/local/devtools/jakarta-tomcat
9

    
10

    
11
## metacat.context will be used to name war only
12
metacat.context=knb
13
authority.context=authority
14

    
15
# Server Properties
16
http.protocol=http
17
config.lsidauthority=ecoinformatics.org
18

    
19
# Installation directory for registry CGI scripts
20
inst.cgi.dir=/var/www/cgi-knb
21

    
22
# Select the database to use for metadata storage
23
# Valid values are oracle, postgresql, sqlserver
24
# MCD the next line needs to go away
25
database=postgresql
26

    
27
# The JDBC connection string used to connect to the database
28
#jdbc-connect=jdbc:oracle:thin:@metacat.nceas.ucsb.edu:1521:knb
29
#jdbc-connect=jdbc:postgresql://localhost/postgres
30
#jdbc-connect=jdbc:microsoft:sqlserver://fatali.nceas.ucsb.edu:1433
31

    
32
# The base directory for locating JDBC jar files (not needed for postgresql)
33
jdbc_base=./lib
34
#jdbc-base=F:\\Program Files\\Microsoft SQL Server 2000 Driver for JDBC\\lib
35

    
36
# TODO SCW remove this, should be exposed in initial configuration
37
temp-dir=/var/metacat/temporary
38

    
39
# Registry & LDAP properties
40
# This section can safely be ignored if installing Metacat without the Perl components
41
# LDAP configuration
42
ldap.context=unaffiliated
43
ldap.url=ldap.ecoinformatics.org
44
ldap.password=LDAP_PASSWORD_HERE
45

    
46
# Installation directory for registry CGI scripts
47
# SCW: these should be detokenized
48
inst.cgi.dir=${deploy.dir}/${metacat.context}/cgi-bin
49
cgi-prefix=http://${httpserver}/${metacat.context}/cgi-bin
50

    
51
# SCW: Set the cgi-user, either here or in scripts to properly
52
# set the permissions on the temporary folder; cgi-writable files
53
cgi-user=www-data
54

    
55
# CVS access to retrieve latest EML 
56
cvsroot=:ext:${env.USER}@cvs.ecoinformatics.org:/cvs
57

    
58
#Turn off or on for timed replication
59
#valide value is true or false
60
timedreplication=false
61

    
62
# The time for starting first timed replication if timedreplication is on
63
# The value should be in SHORT format (e.g. 2:00 AM) without date
64
# The first timed replication will start at the setting time which is 
65
# shortest to the tomcat start time.
66
# Fox example, if the setting is 2:00 AM and tomcat was started at 8:00 AM.
67
# the first timed replication will start at 2:00 AM in the second day
68
# If the setting is 2:00 PM and tomcat was started at 8:00 AM, the first
69
# replication will start at 2:00 PM in the same day.
70
firsttimedreplication=10:00 PM
71

    
72
# The interval to next timed replication if timedreplication is on
73
# The value is in millisecond and default value is 48 hours
74
timedreplicationinterval=172800000
75

    
76
forcereplicationwaitingtime=30000
77

    
78
## Additional configuration options
79
# you probably don't want or need to change these
80
config.metadataLabelLsid=${config.lsidauthority}
81
build.dir=build
82
lsid.build.dir=${build.dir}/lsid
83
lib.dir=lib
84
lsid.lib.dir=${lib.dir}/lsid_lib
85
lsid.classes.dir=edu/ucsb/nceas/metacat/lsid
86
conf.dir=lib/lsid_conf
87
services.dir=${conf.dir}/services
88
webinf.dir=${conf.dir}/WEB-INF
89

    
90
compile.debug=true
91
compile.deprecation=false
92
compile.optimize=true
93

    
94
# paths to be indexed when document is inserted. these are the paths which will be searched often
95
indexPaths=organizationName,originator/individualName/surName,originator/individualName/givenName,originator/organizationName,creator/individualName/surName,creator/individualName/givenName,creator/organizationName,dataset/title,keyword,geographicCoverage/boundingCoordinates/northBoundingCoordinate,geographicCoverage/boundingCoordinates/southBoundingCoordinate,geographicCoverage/boundingCoordinates/westBoundingCoordinate,geographicCoverage/boundingCoordinates/eastBoundingCoordinate,eastBoundingCoordinate,title,entityName,individualName/surName,abstract/para,surName,givenName,para,geographicDescription,literalLayout,eastbc,northbc,westbc,southbc,dataset/access/allow/principal,entityName,taxonRankValue,dataset/dataTable/physical/distribution/online/url,dataset/spatialRaster/physical/distribution/online/url,@packageId,/reviewHistory/review/packageId,EcogridRegEntry/description,EcogridRegEntry/serviceName,EcogridRegEntry/endPoint,associatedParty/individualName/surName,associatedParty/organizationName,coverage/temporalCoverage/singleDateTime/alternativeTimeScale/timeScaleName,coverage/temporalCoverage/rangeOfDates/beginDate/alternativeTimeScale/timeScaleName,coverage/temporalCoverage/rangeOfDates/endDate/alternativeTimeScale/timeScaleName,placekey,idinfo/citation/citeinfo/title,idinfo/citation/citeinfo/origin,idinfo/keywords/theme/themekey,abstract,dataset/dataTable/physical/distribution/online/url/@function,dataset/spatialRaster/physical/distribution/online/url/@function,taxonomicClassification/taxonRankValue,taxonomicClassification/taxonRankName,northBoundingCoordinate,southBoundingCoordinate,westBoundingCoordinate,eastBoundingCoordinate,additionalMetadata/moderatorComment
96

    
97
# Flag to install ecogird or not. Possible values are true or false
98
install.ecogrid=false
99

    
100
# The metacat current dir's abolute value. If you set install.ecogrid=false, this variable
101
#  do NOT need to be configured
102
metacat.dir=/home/daigle/workspace/metacat
103

    
(3-3/5)