Subversion Repositories bacoAlunos

Rev

Rev 1017 | 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
 
146 jmachado 5
#No Futuro este ponto de acesso usado para publicitar coisas como URL's de Blogs pode deixar de ser diferente da configuracao de servidor
6
site.url=${service.url}
1 fvelez 7
 
8
##database configuration
9
database.host=localhost
10
database.port=3306
11
database.catalog=estgweb
12
database.username=root
13
database.password=
288 jmachado 14
database.connection.url=jdbc:mysql://${database.host}:${database.port}/${database.catalog}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true
1 fvelez 15
hibernate.show.sql=false
16
 
79 jmachado 17
use.ldap=true
1 fvelez 18
 
19
#Paths configuration
20
tomcat.home=C:/Servidores/tomcat
225 jmachado 21
#tomcat 5.5
1 fvelez 22
tomcat.libs.ant.home=${tomcat.home}/server/lib
23
tomcat.libs.common.home=${tomcat.home}/common/lib
225 jmachado 24
#tomcat 6
25
#tomcat.libs.ant.home=${tomcat.home}/lib
26
#tomcat.libs.common.home=${tomcat.home}/lib
1 fvelez 27
 
225 jmachado 28
 
1 fvelez 29
tomcat.host=localhost
30
tomcat.port=8080
31
tomcat.url=http://${tomcat.host}:${tomcat.port}
32
tomcat.manager=${tomcat.url}/manager
33
tomcat.username=admin
34
tomcat.password=admin
35
 
48 fvelez 36
service.url=${tomcat.url}${tomcat.context.path}
37
 
1 fvelez 38
#IF is ROOT use Nothing
39
#example for ROOT:
40
#        tomcat.context.path.install=/
41
#        tomcat.context.path=
42
#
43
#example for /mitra:
44
#        tomcat.context.path.install=/mitra
45
#        tomcat.context.path=/mitra
46
#
47
tomcat.context.path.install=/estgweb
48
tomcat.context.path=/estgweb
49
tomcat.war.file=estgweb.war
50
 
51
 
52
common.lib.dir =../common
53
conf.dir            =conf
54
lib.dir             =lib
504 jmachado 55
data.dir            =/VDATA/BACODATA
385 jmachado 56
src.web             =src/web
1 fvelez 57
src.dir             =src/java
225 jmachado 58
src.scripts         =src/scripts
244 jmachado 59
src.xsd             =src/xsd
1 fvelez 60
hbm.dir             =src/hbm
61
build.dir           =build/ant
62
build.dir.classes   =${build.dir}/classes
63
build.dir.war       =${build.dir}/war
385 jmachado 64
build.dir.jsp       =${build.dir}/jsp
99 jmachado 65
build.dir.ws        =${build.dir}/ws
219 jmachado 66
build.dir.scripts   =${build.dir}/scripts
1 fvelez 67
log.dir             =${data.dir}
68
dist.dir            =dist
69
gen.dir             =gen
70
gen.dir.java        =${gen.dir}/java
71
 
225 jmachado 72
 
214 jmachado 73
intranet.setup.folders.filename=mkcursos.exe
74
intranet.setup.folders.file.src=etc/data/intranet/${intranet.setup.folders.filename}
75
build.dir.relative.intranet.setup.folders=/etc/data/intranet
76
build.dir.relative.intranet.setup.folders.file=${build.dir.relative.intranet.setup.folders}/${intranet.setup.folders.filename}
77
build.dir.intranet.setup.folders.file=${build.dir.classes}${build.dir.relative.intranet.setup.folders}
78
 
1 fvelez 79
#conf files
80
app.properties.filename=app.properties
81
app.properties=${conf.dir}/${app.properties.filename}
82
app.properties.build=${build.dir.classes}/${package.dir}
83
 
84
 
18 jmachado 85
mime.types.filename=mime.types
86
mime.types=${conf.dir}/${mime.types.filename}
87
mime.types.build=${build.dir.classes}/jomm/utils
88
 
1 fvelez 89
hibernate.cfg.xml.filename=hibernate.cfg.xml
90
hibernate.cfg.xml=${conf.dir}/${hibernate.cfg.xml.filename}
91
hibernate.cfg.xml.build=${build.dir.classes}/${package.dir}
92
 
93
messages.properties.filename=MessageResourcesAll.properties
94
messages.properties=${conf.dir}/${messages.properties.filename}
95
messages.properties.build=${build.dir.classes}
96
 
97
ldap.properties.filename=ldap.properties
98
ldap.properties=${conf.dir}/${ldap.properties.filename}
99
ldap.properties.build=${build.dir.classes}
100
 
101
jdbc.properties.filename=jdbc.properties
102
jdbc.properties=${conf.dir}/${jdbc.properties.filename}
103
jdbc.properties.build=${build.dir.classes}/${package.dir}
104
 
105
log4j.properties.filename=log4j.properties
106
log4j.properties=${conf.dir}/${log4j.properties.filename}
107
 
108
#log file confirguration
280 jmachado 109
log.file=${data.dir}/../estgweb-local.log
299 jmachado 110
log.level=info
1 fvelez 111
 
29 jmachado 112
#email templates
113
email.templates.dir=/template/email
114
email.templates.dir.build=${build.dir.classes}${email.templates.dir}
115
email.templates.dir.conf=${conf.dir}${email.templates.dir}
116
 
227 jmachado 117
#email templates
118
sms.templates.dir=/template/sms
119
sms.templates.dir.build=${build.dir.classes}${sms.templates.dir}
120
sms.templates.dir.conf=${conf.dir}${sms.templates.dir}
121
 
215 jmachado 122
#assignement templates
123
assignement.templates.dir=/template/assignement
124
assignement.templates.dir.build=${build.dir.classes}${assignement.templates.dir}
125
assignement.templates.dir.conf=${conf.dir}${assignement.templates.dir}
126
 
1 fvelez 127
#DATA
128
out.dir=${data.dir}/out
129
tmp.dir=${data.dir}/tmp
130
 
131
#Paths of packages configuration
132
package.dir=pt/estgp/estgweb
133
domain.package.dir=${package.dir}/domain
134
dao.hbm.package.dir=${hbm.dir}/${domain.package.dir}
135
dao.domain.package.dir=${gen.dir.java}/${domain.package.dir}
136
dao.interfaces.package.dir=${dao.domain.package.dir}/dao
137
dao.impl.package.dir=${dao.interfaces.package.dir}/impl
138
 
139
#Packages configuration
140
package=pt.estgp.estgweb
141
domain.package=${package}.domain
142
dao.interfaces.package=${domain.package}.dao
143
dao.impl.package=${dao.interfaces.package}.impl
144
 
145
#Hibernate Mappings Builder
146
mapping.buider.class=${domain.package}.utils.BuildMappings
147
mapping.buider.class.file=${domain.package.dir}/utils/BuildMappings.java
148
 
219 jmachado 149
#Scripts tools
150
scripts.buider.class=jomm.utils.DosJarIncludePathGenerator
151
scripts.buider.class.file=jomm/utils/DosJarIncludePathGenerator.java
152
scripts.target.libs.file=libs.bat
153
scripts.setenv.file=setenv.bat
154
 
1 fvelez 155
#templates for code generation
156
dao.template.dir=${conf.dir}/template/dao
157
dao.interfaces.template=idao.ftl
158
dao.impl.template=daoimpl.ftl
159
dao.file.pattern=Dao
160
 
99 jmachado 161
#WEB-SERVICES CONFIGURATION
104 jmachado 162
ws.conf.dir=${conf.dir}/web-services
163
 
99 jmachado 164
ws.debug=false
165
ws.keep=true
166
ws.verbose=false
167
ws.extension=true
168
# customization files
169
ws.client.binding.dir=${conf.dir}/web-services/
170
ws.client.binding.file=generic-client.xml
103 jmachado 171
 
99 jmachado 172
ws.client.features=explicitcontext,useonewayoperations
173
#Siges Service Specific Configuration
174
ws.siges.package=pt.ipp.siges.web.services.clients
1017 jmachado 175
#DONT USE ANY MORE NOW IS IN CONFIGURATION DATABASE ONLY FOR BUILD WEB-SERVICES
176
ws.siges.wsdl=http://172.20.100.5:8080/SigesWeb/SiGesWEB.asmx?wsdl
177
#DONT USE ANY MORE NOW IS IN CONFIGURATION DATABASE
178
#ws.siges.wsdl=http://localhost:8080/SigesWeb/SiGesWEB.asmx?wsdl
109 fvelez 179
ws.siges.target.namespace=http://www.ipportalegre.pt/siges/web/services
103 jmachado 180
ws.siges.binding.file=siges-client.xml
104 jmachado 181
 
103 jmachado 182
#Google Service Specific Configuration
104 jmachado 183
 
280 jmachado 184
ws.google.package=com.google.api.ws.clients
1235 jmachado 185
 
186
 
187
ORACLE_SIGES_URL
188
oracle.siges.url=jdbc:oracle:thin:@193.137.229.147:1521:SIGES11
189
oracle.siges.username=dummyChangeInLocal
190
oracle.siges.password=dummyChangeInLocal