Subversion Repositories bacoAlunos

Rev

Rev 1375 | Rev 1387 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 fvelez 1
##
2
## Properties file to be used with ant build.xml
3
##
4
 
1382 jmachado 5
env.JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
146 jmachado 6
#No Futuro este ponto de acesso usado para publicitar coisas como URL's de Blogs pode deixar de ser diferente da configuracao de servidor
7
site.url=${service.url}
1312 jmachado 8
system.intranet.url=/StartAuthentication.do
9
system.public.url=/
1 fvelez 10
 
1312 jmachado 11
#See src/web/layout/themes/
12
#See src/web/css/
13
 
14
#system.redirections.policy.index.welcome=welcomePedagogicSurvey
15
#system.redirections.policy.authentication.action=/authenticatePae.do
16
 
1 fvelez 17
##database configuration
18
database.host=localhost
19
database.port=3306
20
database.catalog=estgweb
21
database.username=root
22
database.password=
288 jmachado 23
database.connection.url=jdbc:mysql://${database.host}:${database.port}/${database.catalog}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true
1 fvelez 24
hibernate.show.sql=false
25
 
79 jmachado 26
use.ldap=true
1 fvelez 27
 
1324 jmachado 28
 
29
ionline.user=ionlineDummyUser
30
ionline.pass=ionlineDummyPass
31
 
1312 jmachado 32
################
33
# System Instance Type Specification
34
################
1323 jmachado 35
system.theme=estg
1312 jmachado 36
system.redirections.policy.index.welcome=welcome
37
system.redirections.policy.authentication.action=/authenticate.do
38
authentication.policy.service=Authenticate
39
authentication.policy.username.msg.key=username
40
authentication.policy.password.msg.key=password
41
 
1323 jmachado 42
#system.theme=ipp
1312 jmachado 43
#system.redirections.policy.index.welcome=welcomePedagogicSurvey
44
#system.redirections.policy.authentication.action=/authenticatePae.do
45
#authentication.policy.service=AuthenticatePae
46
#authentication.policy.username.msg.key=username.pae
47
#authentication.policy.password.msg.key=password.pae
48
################
49
#
50
################
51
 
1 fvelez 52
#Paths configuration
53
tomcat.home=C:/Servidores/tomcat
225 jmachado 54
#tomcat 5.5
1 fvelez 55
tomcat.libs.ant.home=${tomcat.home}/server/lib
56
tomcat.libs.common.home=${tomcat.home}/common/lib
225 jmachado 57
#tomcat 6
58
#tomcat.libs.ant.home=${tomcat.home}/lib
59
#tomcat.libs.common.home=${tomcat.home}/lib
1 fvelez 60
 
225 jmachado 61
 
1 fvelez 62
tomcat.host=localhost
63
tomcat.port=8080
64
tomcat.url=http://${tomcat.host}:${tomcat.port}
65
tomcat.manager=${tomcat.url}/manager
66
tomcat.username=admin
67
tomcat.password=admin
68
 
48 fvelez 69
service.url=${tomcat.url}${tomcat.context.path}
70
 
1 fvelez 71
#IF is ROOT use Nothing
72
#example for ROOT:
73
#        tomcat.context.path.install=/
74
#        tomcat.context.path=
75
#
76
#example for /mitra:
77
#        tomcat.context.path.install=/mitra
78
#        tomcat.context.path=/mitra
79
#
80
tomcat.context.path.install=/estgweb
81
tomcat.context.path=/estgweb
82
tomcat.war.file=estgweb.war
83
 
84
 
85
common.lib.dir =../common
86
conf.dir            =conf
87
lib.dir             =lib
504 jmachado 88
data.dir            =/VDATA/BACODATA
385 jmachado 89
src.web             =src/web
1 fvelez 90
src.dir             =src/java
225 jmachado 91
src.scripts         =src/scripts
244 jmachado 92
src.xsd             =src/xsd
1 fvelez 93
hbm.dir             =src/hbm
94
build.dir           =build/ant
95
build.dir.classes   =${build.dir}/classes
96
build.dir.war       =${build.dir}/war
385 jmachado 97
build.dir.jsp       =${build.dir}/jsp
99 jmachado 98
build.dir.ws        =${build.dir}/ws
219 jmachado 99
build.dir.scripts   =${build.dir}/scripts
1 fvelez 100
log.dir             =${data.dir}
101
dist.dir            =dist
102
gen.dir             =gen
103
gen.dir.java        =${gen.dir}/java
104
 
225 jmachado 105
 
214 jmachado 106
intranet.setup.folders.filename=mkcursos.exe
107
intranet.setup.folders.file.src=etc/data/intranet/${intranet.setup.folders.filename}
108
build.dir.relative.intranet.setup.folders=/etc/data/intranet
109
build.dir.relative.intranet.setup.folders.file=${build.dir.relative.intranet.setup.folders}/${intranet.setup.folders.filename}
110
build.dir.intranet.setup.folders.file=${build.dir.classes}${build.dir.relative.intranet.setup.folders}
111
 
1 fvelez 112
#conf files
113
app.properties.filename=app.properties
114
app.properties=${conf.dir}/${app.properties.filename}
115
app.properties.build=${build.dir.classes}/${package.dir}
116
 
117
 
18 jmachado 118
mime.types.filename=mime.types
119
mime.types=${conf.dir}/${mime.types.filename}
120
mime.types.build=${build.dir.classes}/jomm/utils
121
 
1325 jmachado 122
 
1 fvelez 123
hibernate.cfg.xml.filename=hibernate.cfg.xml
1325 jmachado 124
olap.cfg.xml.filename=olap.cfg.xml
1 fvelez 125
hibernate.cfg.xml=${conf.dir}/${hibernate.cfg.xml.filename}
1325 jmachado 126
olap.cfg.xml=${conf.dir}/${olap.cfg.xml.filename}
1 fvelez 127
hibernate.cfg.xml.build=${build.dir.classes}/${package.dir}
1325 jmachado 128
olap.cfg.xml.build=${build.dir.classes}/${package.dir}
1 fvelez 129
 
130
messages.properties.filename=MessageResourcesAll.properties
131
messages.properties=${conf.dir}/${messages.properties.filename}
132
messages.properties.build=${build.dir.classes}
133
 
134
ldap.properties.filename=ldap.properties
135
ldap.properties=${conf.dir}/${ldap.properties.filename}
136
ldap.properties.build=${build.dir.classes}
137
 
138
jdbc.properties.filename=jdbc.properties
139
jdbc.properties=${conf.dir}/${jdbc.properties.filename}
140
jdbc.properties.build=${build.dir.classes}/${package.dir}
141
 
1325 jmachado 142
jdbc.olap.properties.filename=jdbcOlap.properties
143
jdbc.olap.properties=${conf.dir}/${jdbc.olap.properties.filename}
144
jdbc.olap.properties.build=${build.dir.classes}/${package.dir}
145
 
146
 
1 fvelez 147
log4j.properties.filename=log4j.properties
148
log4j.properties=${conf.dir}/${log4j.properties.filename}
149
 
150
#log file confirguration
1375 jmachado 151
log.file=${data.dir}/../bacov3-local.log
299 jmachado 152
log.level=info
1 fvelez 153
 
29 jmachado 154
#email templates
155
email.templates.dir=/template/email
156
email.templates.dir.build=${build.dir.classes}${email.templates.dir}
157
email.templates.dir.conf=${conf.dir}${email.templates.dir}
158
 
1327 jmachado 159
#EMAIL SERVER SMTP GOOGLE
160
email.password=DUMMY_PASSWORD_GMAIL
161
 
227 jmachado 162
#email templates
163
sms.templates.dir=/template/sms
164
sms.templates.dir.build=${build.dir.classes}${sms.templates.dir}
165
sms.templates.dir.conf=${conf.dir}${sms.templates.dir}
166
 
215 jmachado 167
#assignement templates
168
assignement.templates.dir=/template/assignement
169
assignement.templates.dir.build=${build.dir.classes}${assignement.templates.dir}
170
assignement.templates.dir.conf=${conf.dir}${assignement.templates.dir}
171
 
1 fvelez 172
#DATA
173
out.dir=${data.dir}/out
174
tmp.dir=${data.dir}/tmp
175
 
176
#Paths of packages configuration
177
package.dir=pt/estgp/estgweb
178
domain.package.dir=${package.dir}/domain
179
dao.hbm.package.dir=${hbm.dir}/${domain.package.dir}
180
dao.domain.package.dir=${gen.dir.java}/${domain.package.dir}
181
dao.interfaces.package.dir=${dao.domain.package.dir}/dao
182
dao.impl.package.dir=${dao.interfaces.package.dir}/impl
183
 
184
#Packages configuration
185
package=pt.estgp.estgweb
186
domain.package=${package}.domain
187
dao.interfaces.package=${domain.package}.dao
188
dao.impl.package=${dao.interfaces.package}.impl
189
 
190
#Hibernate Mappings Builder
191
mapping.buider.class=${domain.package}.utils.BuildMappings
192
mapping.buider.class.file=${domain.package.dir}/utils/BuildMappings.java
193
 
219 jmachado 194
#Scripts tools
195
scripts.buider.class=jomm.utils.DosJarIncludePathGenerator
196
scripts.buider.class.file=jomm/utils/DosJarIncludePathGenerator.java
197
scripts.target.libs.file=libs.bat
198
scripts.setenv.file=setenv.bat
199
 
1 fvelez 200
#templates for code generation
201
dao.template.dir=${conf.dir}/template/dao
202
dao.interfaces.template=idao.ftl
203
dao.impl.template=daoimpl.ftl
204
dao.file.pattern=Dao
205
 
99 jmachado 206
#WEB-SERVICES CONFIGURATION
104 jmachado 207
ws.conf.dir=${conf.dir}/web-services
208
 
99 jmachado 209
ws.debug=false
210
ws.keep=true
211
ws.verbose=false
212
ws.extension=true
213
# customization files
214
ws.client.binding.dir=${conf.dir}/web-services/
215
ws.client.binding.file=generic-client.xml
103 jmachado 216
 
99 jmachado 217
ws.client.features=explicitcontext,useonewayoperations
218
#Siges Service Specific Configuration
219
ws.siges.package=pt.ipp.siges.web.services.clients
1017 jmachado 220
#DONT USE ANY MORE NOW IS IN CONFIGURATION DATABASE ONLY FOR BUILD WEB-SERVICES
221
ws.siges.wsdl=http://172.20.100.5:8080/SigesWeb/SiGesWEB.asmx?wsdl
222
#DONT USE ANY MORE NOW IS IN CONFIGURATION DATABASE
223
#ws.siges.wsdl=http://localhost:8080/SigesWeb/SiGesWEB.asmx?wsdl
109 fvelez 224
ws.siges.target.namespace=http://www.ipportalegre.pt/siges/web/services
103 jmachado 225
ws.siges.binding.file=siges-client.xml
104 jmachado 226
 
103 jmachado 227
#Google Service Specific Configuration
104 jmachado 228
 
280 jmachado 229
ws.google.package=com.google.api.ws.clients
1235 jmachado 230
 
231
 
232
ORACLE_SIGES_URL
233
oracle.siges.url=jdbc:oracle:thin:@193.137.229.147:1521:SIGES11
234
oracle.siges.username=dummyChangeInLocal
1312 jmachado 235
oracle.siges.password=dummyChangeInLocal
236
 
237
 
238
##Em testes colocar a true
239
test.control.var=false