Subversion Repositories bacoAlunos

Rev

Rev 109 | Rev 163 | 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
21
tomcat.libs.ant.home=${tomcat.home}/server/lib
22
tomcat.libs.common.home=${tomcat.home}/common/lib
23
 
24
tomcat.host=localhost
25
tomcat.port=8080
26
tomcat.url=http://${tomcat.host}:${tomcat.port}
27
tomcat.manager=${tomcat.url}/manager
28
tomcat.username=admin
29
tomcat.password=admin
30
 
48 fvelez 31
service.url=${tomcat.url}${tomcat.context.path}
32
 
1 fvelez 33
#IF is ROOT use Nothing
34
#example for ROOT:
35
#        tomcat.context.path.install=/
36
#        tomcat.context.path=
37
#
38
#example for /mitra:
39
#        tomcat.context.path.install=/mitra
40
#        tomcat.context.path=/mitra
41
#
42
tomcat.context.path.install=/estgweb
43
tomcat.context.path=/estgweb
44
tomcat.war.file=estgweb.war
45
 
46
 
47
common.lib.dir =../common
48
conf.dir            =conf
49
lib.dir             =lib
18 jmachado 50
data.dir            =C:/Servidores/DATA/estgweb
1 fvelez 51
src.dir             =src/java
52
hbm.dir             =src/hbm
53
build.dir           =build/ant
54
build.dir.classes   =${build.dir}/classes
55
build.dir.war       =${build.dir}/war
99 jmachado 56
build.dir.ws        =${build.dir}/ws
1 fvelez 57
log.dir             =${data.dir}
58
dist.dir            =dist
59
gen.dir             =gen
60
gen.dir.java        =${gen.dir}/java
61
 
62
#conf files
63
app.properties.filename=app.properties
64
app.properties=${conf.dir}/${app.properties.filename}
65
app.properties.build=${build.dir.classes}/${package.dir}
66
 
67
 
18 jmachado 68
mime.types.filename=mime.types
69
mime.types=${conf.dir}/${mime.types.filename}
70
mime.types.build=${build.dir.classes}/jomm/utils
71
 
1 fvelez 72
hibernate.cfg.xml.filename=hibernate.cfg.xml
73
hibernate.cfg.xml=${conf.dir}/${hibernate.cfg.xml.filename}
74
hibernate.cfg.xml.build=${build.dir.classes}/${package.dir}
75
 
76
messages.properties.filename=MessageResourcesAll.properties
77
messages.properties=${conf.dir}/${messages.properties.filename}
78
messages.properties.build=${build.dir.classes}
79
 
80
ldap.properties.filename=ldap.properties
81
ldap.properties=${conf.dir}/${ldap.properties.filename}
82
ldap.properties.build=${build.dir.classes}
83
 
84
jdbc.properties.filename=jdbc.properties
85
jdbc.properties=${conf.dir}/${jdbc.properties.filename}
86
jdbc.properties.build=${build.dir.classes}/${package.dir}
87
 
88
log4j.properties.filename=log4j.properties
89
log4j.properties=${conf.dir}/${log4j.properties.filename}
90
 
91
#log file confirguration
35 fvelez 92
log.file=${data.dir}/estgweb.log
1 fvelez 93
 
29 jmachado 94
#email templates
95
email.templates.dir=/template/email
96
email.templates.dir.build=${build.dir.classes}${email.templates.dir}
97
email.templates.dir.conf=${conf.dir}${email.templates.dir}
98
 
1 fvelez 99
#DATA
100
out.dir=${data.dir}/out
101
tmp.dir=${data.dir}/tmp
102
 
103
#Paths of packages configuration
104
package.dir=pt/estgp/estgweb
105
domain.package.dir=${package.dir}/domain
106
dao.hbm.package.dir=${hbm.dir}/${domain.package.dir}
107
dao.domain.package.dir=${gen.dir.java}/${domain.package.dir}
108
dao.interfaces.package.dir=${dao.domain.package.dir}/dao
109
dao.impl.package.dir=${dao.interfaces.package.dir}/impl
110
 
111
#Packages configuration
112
package=pt.estgp.estgweb
113
domain.package=${package}.domain
114
dao.interfaces.package=${domain.package}.dao
115
dao.impl.package=${dao.interfaces.package}.impl
116
 
117
#Hibernate Mappings Builder
118
mapping.buider.class=${domain.package}.utils.BuildMappings
119
mapping.buider.class.file=${domain.package.dir}/utils/BuildMappings.java
120
 
121
#templates for code generation
122
dao.template.dir=${conf.dir}/template/dao
123
dao.interfaces.template=idao.ftl
124
dao.impl.template=daoimpl.ftl
125
dao.file.pattern=Dao
126
 
99 jmachado 127
#WEB-SERVICES CONFIGURATION
104 jmachado 128
ws.conf.dir=${conf.dir}/web-services
129
 
99 jmachado 130
ws.debug=false
131
ws.keep=true
132
ws.verbose=false
133
ws.extension=true
134
# customization files
135
ws.client.binding.dir=${conf.dir}/web-services/
136
ws.client.binding.file=generic-client.xml
103 jmachado 137
 
99 jmachado 138
ws.client.features=explicitcontext,useonewayoperations
139
#Siges Service Specific Configuration
140
ws.siges.package=pt.ipp.siges.web.services.clients
103 jmachado 141
ws.siges.wsdl=http://172.20.130.15/SigesWeb/SiGesWEB.asmx?wsdl
109 fvelez 142
ws.siges.target.namespace=http://www.ipportalegre.pt/siges/web/services
103 jmachado 143
ws.siges.binding.file=siges-client.xml
104 jmachado 144
 
103 jmachado 145
#Google Service Specific Configuration
104 jmachado 146
 
147
ws.google.package=com.google.api.ws.clients