Subversion Repositories bacoAlunos

Rev

Rev 1382 | Rev 1394 | 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
1387 jmachado 38
system.redirections.policy.authentication.logout.action=/Logout.do
1312 jmachado 39
authentication.policy.service=Authenticate
40
authentication.policy.username.msg.key=username
41
authentication.policy.password.msg.key=password
42
 
1323 jmachado 43
#system.theme=ipp
1312 jmachado 44
#system.redirections.policy.index.welcome=welcomePedagogicSurvey
45
#system.redirections.policy.authentication.action=/authenticatePae.do
46
#authentication.policy.service=AuthenticatePae
47
#authentication.policy.username.msg.key=username.pae
48
#authentication.policy.password.msg.key=password.pae
49
################
50
#
51
################
52
 
1 fvelez 53
#Paths configuration
54
tomcat.home=C:/Servidores/tomcat
225 jmachado 55
#tomcat 5.5
1 fvelez 56
tomcat.libs.ant.home=${tomcat.home}/server/lib
57
tomcat.libs.common.home=${tomcat.home}/common/lib
225 jmachado 58
#tomcat 6
59
#tomcat.libs.ant.home=${tomcat.home}/lib
60
#tomcat.libs.common.home=${tomcat.home}/lib
1 fvelez 61
 
225 jmachado 62
 
1 fvelez 63
tomcat.host=localhost
64
tomcat.port=8080
65
tomcat.url=http://${tomcat.host}:${tomcat.port}
66
tomcat.manager=${tomcat.url}/manager
67
tomcat.username=admin
68
tomcat.password=admin
69
 
48 fvelez 70
service.url=${tomcat.url}${tomcat.context.path}
71
 
1 fvelez 72
#IF is ROOT use Nothing
73
#example for ROOT:
74
#        tomcat.context.path.install=/
75
#        tomcat.context.path=
76
#
77
#example for /mitra:
78
#        tomcat.context.path.install=/mitra
79
#        tomcat.context.path=/mitra
80
#
81
tomcat.context.path.install=/estgweb
82
tomcat.context.path=/estgweb
83
tomcat.war.file=estgweb.war
84
 
85
 
86
common.lib.dir =../common
87
conf.dir            =conf
88
lib.dir             =lib
504 jmachado 89
data.dir            =/VDATA/BACODATA
385 jmachado 90
src.web             =src/web
1 fvelez 91
src.dir             =src/java
225 jmachado 92
src.scripts         =src/scripts
244 jmachado 93
src.xsd             =src/xsd
1 fvelez 94
hbm.dir             =src/hbm
95
build.dir           =build/ant
96
build.dir.classes   =${build.dir}/classes
97
build.dir.war       =${build.dir}/war
385 jmachado 98
build.dir.jsp       =${build.dir}/jsp
99 jmachado 99
build.dir.ws        =${build.dir}/ws
219 jmachado 100
build.dir.scripts   =${build.dir}/scripts
1 fvelez 101
log.dir             =${data.dir}
102
dist.dir            =dist
103
gen.dir             =gen
104
gen.dir.java        =${gen.dir}/java
105
 
225 jmachado 106
 
214 jmachado 107
intranet.setup.folders.filename=mkcursos.exe
108
intranet.setup.folders.file.src=etc/data/intranet/${intranet.setup.folders.filename}
109
build.dir.relative.intranet.setup.folders=/etc/data/intranet
110
build.dir.relative.intranet.setup.folders.file=${build.dir.relative.intranet.setup.folders}/${intranet.setup.folders.filename}
111
build.dir.intranet.setup.folders.file=${build.dir.classes}${build.dir.relative.intranet.setup.folders}
112
 
1 fvelez 113
#conf files
114
app.properties.filename=app.properties
115
app.properties=${conf.dir}/${app.properties.filename}
116
app.properties.build=${build.dir.classes}/${package.dir}
117
 
118
 
18 jmachado 119
mime.types.filename=mime.types
120
mime.types=${conf.dir}/${mime.types.filename}
121
mime.types.build=${build.dir.classes}/jomm/utils
122
 
1325 jmachado 123
 
1 fvelez 124
hibernate.cfg.xml.filename=hibernate.cfg.xml
1325 jmachado 125
olap.cfg.xml.filename=olap.cfg.xml
1 fvelez 126
hibernate.cfg.xml=${conf.dir}/${hibernate.cfg.xml.filename}
1325 jmachado 127
olap.cfg.xml=${conf.dir}/${olap.cfg.xml.filename}
1 fvelez 128
hibernate.cfg.xml.build=${build.dir.classes}/${package.dir}
1325 jmachado 129
olap.cfg.xml.build=${build.dir.classes}/${package.dir}
1 fvelez 130
 
131
messages.properties.filename=MessageResourcesAll.properties
132
messages.properties=${conf.dir}/${messages.properties.filename}
133
messages.properties.build=${build.dir.classes}
134
 
135
ldap.properties.filename=ldap.properties
136
ldap.properties=${conf.dir}/${ldap.properties.filename}
137
ldap.properties.build=${build.dir.classes}
138
 
139
jdbc.properties.filename=jdbc.properties
140
jdbc.properties=${conf.dir}/${jdbc.properties.filename}
141
jdbc.properties.build=${build.dir.classes}/${package.dir}
142
 
1325 jmachado 143
jdbc.olap.properties.filename=jdbcOlap.properties
144
jdbc.olap.properties=${conf.dir}/${jdbc.olap.properties.filename}
145
jdbc.olap.properties.build=${build.dir.classes}/${package.dir}
146
 
147
 
1 fvelez 148
log4j.properties.filename=log4j.properties
149
log4j.properties=${conf.dir}/${log4j.properties.filename}
150
 
151
#log file confirguration
1375 jmachado 152
log.file=${data.dir}/../bacov3-local.log
299 jmachado 153
log.level=info
1 fvelez 154
 
29 jmachado 155
#email templates
156
email.templates.dir=/template/email
157
email.templates.dir.build=${build.dir.classes}${email.templates.dir}
158
email.templates.dir.conf=${conf.dir}${email.templates.dir}
159
 
1327 jmachado 160
#EMAIL SERVER SMTP GOOGLE
161
email.password=DUMMY_PASSWORD_GMAIL
162
 
227 jmachado 163
#email templates
164
sms.templates.dir=/template/sms
165
sms.templates.dir.build=${build.dir.classes}${sms.templates.dir}
166
sms.templates.dir.conf=${conf.dir}${sms.templates.dir}
167
 
215 jmachado 168
#assignement templates
169
assignement.templates.dir=/template/assignement
170
assignement.templates.dir.build=${build.dir.classes}${assignement.templates.dir}
171
assignement.templates.dir.conf=${conf.dir}${assignement.templates.dir}
172
 
1 fvelez 173
#DATA
174
out.dir=${data.dir}/out
175
tmp.dir=${data.dir}/tmp
176
 
177
#Paths of packages configuration
178
package.dir=pt/estgp/estgweb
179
domain.package.dir=${package.dir}/domain
180
dao.hbm.package.dir=${hbm.dir}/${domain.package.dir}
181
dao.domain.package.dir=${gen.dir.java}/${domain.package.dir}
182
dao.interfaces.package.dir=${dao.domain.package.dir}/dao
183
dao.impl.package.dir=${dao.interfaces.package.dir}/impl
184
 
185
#Packages configuration
186
package=pt.estgp.estgweb
187
domain.package=${package}.domain
188
dao.interfaces.package=${domain.package}.dao
189
dao.impl.package=${dao.interfaces.package}.impl
190
 
191
#Hibernate Mappings Builder
192
mapping.buider.class=${domain.package}.utils.BuildMappings
193
mapping.buider.class.file=${domain.package.dir}/utils/BuildMappings.java
194
 
219 jmachado 195
#Scripts tools
196
scripts.buider.class=jomm.utils.DosJarIncludePathGenerator
197
scripts.buider.class.file=jomm/utils/DosJarIncludePathGenerator.java
198
scripts.target.libs.file=libs.bat
199
scripts.setenv.file=setenv.bat
200
 
1 fvelez 201
#templates for code generation
202
dao.template.dir=${conf.dir}/template/dao
203
dao.interfaces.template=idao.ftl
204
dao.impl.template=daoimpl.ftl
205
dao.file.pattern=Dao
206
 
99 jmachado 207
#WEB-SERVICES CONFIGURATION
104 jmachado 208
ws.conf.dir=${conf.dir}/web-services
209
 
99 jmachado 210
ws.debug=false
211
ws.keep=true
212
ws.verbose=false
213
ws.extension=true
214
# customization files
215
ws.client.binding.dir=${conf.dir}/web-services/
216
ws.client.binding.file=generic-client.xml
103 jmachado 217
 
99 jmachado 218
ws.client.features=explicitcontext,useonewayoperations
219
#Siges Service Specific Configuration
220
ws.siges.package=pt.ipp.siges.web.services.clients
1017 jmachado 221
#DONT USE ANY MORE NOW IS IN CONFIGURATION DATABASE ONLY FOR BUILD WEB-SERVICES
222
ws.siges.wsdl=http://172.20.100.5:8080/SigesWeb/SiGesWEB.asmx?wsdl
223
#DONT USE ANY MORE NOW IS IN CONFIGURATION DATABASE
224
#ws.siges.wsdl=http://localhost:8080/SigesWeb/SiGesWEB.asmx?wsdl
109 fvelez 225
ws.siges.target.namespace=http://www.ipportalegre.pt/siges/web/services
103 jmachado 226
ws.siges.binding.file=siges-client.xml
104 jmachado 227
 
103 jmachado 228
#Google Service Specific Configuration
104 jmachado 229
 
280 jmachado 230
ws.google.package=com.google.api.ws.clients
1235 jmachado 231
 
232
 
233
ORACLE_SIGES_URL
234
oracle.siges.url=jdbc:oracle:thin:@193.137.229.147:1521:SIGES11
235
oracle.siges.username=dummyChangeInLocal
1312 jmachado 236
oracle.siges.password=dummyChangeInLocal
237
 
238
 
239
##Em testes colocar a true
240
test.control.var=false