-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.properties
38 lines (31 loc) · 1.05 KB
/
build.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
commons.env = development
# Disable archive task, takes ages and we don't care
package.archive.enabled = false
# Coding standard
coding.standard = PSR2
db.hostname = localhost
db.userid = root
db.password =
db.name = torii_testing
# Dplicate settings for DBDeploy
database.host = ${db.hostname}
database.name = ${db.name}
database.user = ${db.userid}
database.password = ${db.password}
# Database credentials for the production environment
db.production.hostname = localhost
db.production.userid =
db.production.password =
db.production.name = torii
# Database credentials for the dev environment
db.development.hostname = localhost
db.development.userid = root
db.development.password =
db.development.name = torii_dev
# Properties determining, if the build should fail, if one of the tests fails
test-unit.fail-on-violation = true
test-feature.fail-on-violation = true
test-static-cpd.fail-on-violation = false
test-static-checkstyle.fail-on-violation = false
test-static-pmd.fail-on-violation = false
test-static-pdepend.fail-on-violation = false