Subversion Repositories bacoAlunos

Rev

Rev 219 | Rev 227 | 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
 
215 jmachado 113
#assignement templates
114
assignement.templates.dir=/template/assignement
115
assignement.templates.dir.build=${build.dir.classes}${assignement.templates.dir}
116
assignement.templates.dir.conf=${conf.dir}${assignement.templates.dir}
117
 
1 fvelez 118
#DATA
119
out.dir=${data.dir}/out
120
tmp.dir=${data.dir}/tmp
121
 
122
#Paths of packages configuration
123
package.dir=pt/estgp/estgweb
124
domain.package.dir=${package.dir}/domain
125
dao.hbm.package.dir=${hbm.dir}/${domain.package.dir}
126
dao.domain.package.dir=${gen.dir.java}/${domain.package.dir}
127
dao.interfaces.package.dir=${dao.domain.package.dir}/dao
128
dao.impl.package.dir=${dao.interfaces.package.dir}/impl
129
 
130
#Packages configuration
131
package=pt.estgp.estgweb
132
domain.package=${package}.domain
133
dao.interfaces.package=${domain.package}.dao
134
dao.impl.package=${dao.interfaces.package}.impl
135
 
136
#Hibernate Mappings Builder
137
mapping.buider.class=${domain.package}.utils.BuildMappings
138
mapping.buider.class.file=${domain.package.dir}/utils/BuildMappings.java
139
 
219 jmachado 140
#Scripts tools
141
scripts.buider.class=jomm.utils.DosJarIncludePathGenerator
142
scripts.buider.class.file=jomm/utils/DosJarIncludePathGenerator.java
143
scripts.target.libs.file=libs.bat
144
scripts.setenv.file=setenv.bat
145
 
1 fvelez 146
#templates for code generation
147
dao.template.dir=${conf.dir}/template/dao
148
dao.interfaces.template=idao.ftl
149
dao.impl.template=daoimpl.ftl
150
dao.file.pattern=Dao
151
 
99 jmachado 152
#WEB-SERVICES CONFIGURATION
104 jmachado 153
ws.conf.dir=${conf.dir}/web-services
154
 
99 jmachado 155
ws.debug=false
156
ws.keep=true
157
ws.verbose=false
158
ws.extension=true
159
# customization files
160
ws.client.binding.dir=${conf.dir}/web-services/
161
ws.client.binding.file=generic-client.xml
103 jmachado 162
 
99 jmachado 163
ws.client.features=explicitcontext,useonewayoperations
164
#Siges Service Specific Configuration
165
ws.siges.package=pt.ipp.siges.web.services.clients
163 jmachado 166
ws.siges.wsdl=http://172.20.230.230/SigesWeb/SiGesWEB.asmx?wsdl
109 fvelez 167
ws.siges.target.namespace=http://www.ipportalegre.pt/siges/web/services
103 jmachado 168
ws.siges.binding.file=siges-client.xml
104 jmachado 169
 
103 jmachado 170
#Google Service Specific Configuration
104 jmachado 171
 
172
ws.google.package=com.google.api.ws.clients