Subversion Repositories bacoAlunos

Rev

Rev 225 | Rev 244 | 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=
14
database.connection.url=jdbc:mysql://${database.host}:${database.port}/${database.catalog}?useUnicode=true&characterEncoding=UTF-8
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
18 jmachado 55
data.dir            =C:/Servidores/DATA/estgweb
1 fvelez 56
src.dir             =src/java
225 jmachado 57
src.scripts         =src/scripts
1 fvelez 58
hbm.dir             =src/hbm
59
build.dir           =build/ant
60
build.dir.classes   =${build.dir}/classes
61
build.dir.war       =${build.dir}/war
99 jmachado 62
build.dir.ws        =${build.dir}/ws
219 jmachado 63
build.dir.scripts   =${build.dir}/scripts
1 fvelez 64
log.dir             =${data.dir}
65
dist.dir            =dist
66
gen.dir             =gen
67
gen.dir.java        =${gen.dir}/java
68
 
225 jmachado 69
 
214 jmachado 70
intranet.setup.folders.filename=mkcursos.exe
71
intranet.setup.folders.file.src=etc/data/intranet/${intranet.setup.folders.filename}
72
build.dir.relative.intranet.setup.folders=/etc/data/intranet
73
build.dir.relative.intranet.setup.folders.file=${build.dir.relative.intranet.setup.folders}/${intranet.setup.folders.filename}
74
build.dir.intranet.setup.folders.file=${build.dir.classes}${build.dir.relative.intranet.setup.folders}
75
 
1 fvelez 76
#conf files
77
app.properties.filename=app.properties
78
app.properties=${conf.dir}/${app.properties.filename}
79
app.properties.build=${build.dir.classes}/${package.dir}
80
 
81
 
18 jmachado 82
mime.types.filename=mime.types
83
mime.types=${conf.dir}/${mime.types.filename}
84
mime.types.build=${build.dir.classes}/jomm/utils
85
 
1 fvelez 86
hibernate.cfg.xml.filename=hibernate.cfg.xml
87
hibernate.cfg.xml=${conf.dir}/${hibernate.cfg.xml.filename}
88
hibernate.cfg.xml.build=${build.dir.classes}/${package.dir}
89
 
90
messages.properties.filename=MessageResourcesAll.properties
91
messages.properties=${conf.dir}/${messages.properties.filename}
92
messages.properties.build=${build.dir.classes}
93
 
94
ldap.properties.filename=ldap.properties
95
ldap.properties=${conf.dir}/${ldap.properties.filename}
96
ldap.properties.build=${build.dir.classes}
97
 
98
jdbc.properties.filename=jdbc.properties
99
jdbc.properties=${conf.dir}/${jdbc.properties.filename}
100
jdbc.properties.build=${build.dir.classes}/${package.dir}
101
 
102
log4j.properties.filename=log4j.properties
103
log4j.properties=${conf.dir}/${log4j.properties.filename}
104
 
105
#log file confirguration
35 fvelez 106
log.file=${data.dir}/estgweb.log
1 fvelez 107
 
29 jmachado 108
#email templates
109
email.templates.dir=/template/email
110
email.templates.dir.build=${build.dir.classes}${email.templates.dir}
111
email.templates.dir.conf=${conf.dir}${email.templates.dir}
112
 
227 jmachado 113
#email templates
114
sms.templates.dir=/template/sms
115
sms.templates.dir.build=${build.dir.classes}${sms.templates.dir}
116
sms.templates.dir.conf=${conf.dir}${sms.templates.dir}
117
 
215 jmachado 118
#assignement templates
119
assignement.templates.dir=/template/assignement
120
assignement.templates.dir.build=${build.dir.classes}${assignement.templates.dir}
121
assignement.templates.dir.conf=${conf.dir}${assignement.templates.dir}
122
 
1 fvelez 123
#DATA
124
out.dir=${data.dir}/out
125
tmp.dir=${data.dir}/tmp
126
 
127
#Paths of packages configuration
128
package.dir=pt/estgp/estgweb
129
domain.package.dir=${package.dir}/domain
130
dao.hbm.package.dir=${hbm.dir}/${domain.package.dir}
131
dao.domain.package.dir=${gen.dir.java}/${domain.package.dir}
132
dao.interfaces.package.dir=${dao.domain.package.dir}/dao
133
dao.impl.package.dir=${dao.interfaces.package.dir}/impl
134
 
135
#Packages configuration
136
package=pt.estgp.estgweb
137
domain.package=${package}.domain
138
dao.interfaces.package=${domain.package}.dao
139
dao.impl.package=${dao.interfaces.package}.impl
140
 
141
#Hibernate Mappings Builder
142
mapping.buider.class=${domain.package}.utils.BuildMappings
143
mapping.buider.class.file=${domain.package.dir}/utils/BuildMappings.java
144
 
219 jmachado 145
#Scripts tools
146
scripts.buider.class=jomm.utils.DosJarIncludePathGenerator
147
scripts.buider.class.file=jomm/utils/DosJarIncludePathGenerator.java
148
scripts.target.libs.file=libs.bat
149
scripts.setenv.file=setenv.bat
150
 
1 fvelez 151
#templates for code generation
152
dao.template.dir=${conf.dir}/template/dao
153
dao.interfaces.template=idao.ftl
154
dao.impl.template=daoimpl.ftl
155
dao.file.pattern=Dao
156
 
99 jmachado 157
#WEB-SERVICES CONFIGURATION
104 jmachado 158
ws.conf.dir=${conf.dir}/web-services
159
 
99 jmachado 160
ws.debug=false
161
ws.keep=true
162
ws.verbose=false
163
ws.extension=true
164
# customization files
165
ws.client.binding.dir=${conf.dir}/web-services/
166
ws.client.binding.file=generic-client.xml
103 jmachado 167
 
99 jmachado 168
ws.client.features=explicitcontext,useonewayoperations
169
#Siges Service Specific Configuration
170
ws.siges.package=pt.ipp.siges.web.services.clients
163 jmachado 171
ws.siges.wsdl=http://172.20.230.230/SigesWeb/SiGesWEB.asmx?wsdl
109 fvelez 172
ws.siges.target.namespace=http://www.ipportalegre.pt/siges/web/services
103 jmachado 173
ws.siges.binding.file=siges-client.xml
104 jmachado 174
 
103 jmachado 175
#Google Service Specific Configuration
104 jmachado 176
 
177
ws.google.package=com.google.api.ws.clients