Subversion Repositories bacoAlunos

Rev

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