forked from appserver-io/build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.default.properties
61 lines (50 loc) · 2.27 KB
/
common.default.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#--------------------------------------------------------------------------------
# appserver.io default build properties
#
# @copyright Copyright (c) 2010 <info@techdivision.com> - TechDivision GmbH
# @license http://opensource.org/licenses/osl-3.0.php
# Open Software License (OSL 3.0)
# @author TechDivision GmbH - Core Team <core@techdivision.com>
#--------------------------------------------------------------------------------
# ---- Default Operating System -------------------------------------------------
os.family = linux
# ---- PHP_CodeSniffer Settings -------------------------------------------------
# File With Conding Standards
coding.standard = ${build.dir}/phpcs.xml
# File With Conding Standards
phpmd.standard = ${build.dir}/phpmd.xml
# ---- PHPDocumentor Settings ---------------------------------------------------
# Directories
phpdoc-src.dir = ${php-src.dir}
phpdoc-target.dir = ${php-target.dir}/${unique.name}/apidoc
phpdoc-ignore.dir = vendor
# ---- PDepend Settings ---------------------------------------------------------
# Directories
pdepend-src.dir = ${php-src.dir}
pdepend-ignore.dir = vendor
# ---- PHPMD Settings -----------------------------------------------------------
# Directories
phpmd-src.dir = ${php-src.dir}
phpmd-exclude.dir = vendor
# ---- PHPCPD Settings ----------------------------------------------------------
# Directories
phpcpd-src.dir = ${php-src.dir}
phpcpd-exclude.dir = --exclude vendor
phpcpd-additional.args = ${phpcpd-exclude.dir}
# ---- PHPCS Settings -----------------------------------------------------------
# can be overwritten locally
phpcs-additional.args = ""
# ---- PHPLoc Settings ---------------------------------------------------------
# Directories
phploc-src.dir = ${php-src.dir}
phploc-exclude.dir = vendor
# ---- PHPLint Settings ---------------------------------------------------------
# Directories
phplint-src.dir = ${php-src.dir}
phplint-include.dir = **/*.php
phplint-exclude.dir = vendor/**
# ---- Provides build number for general purposes -------------------------------
# The BUILD_NUMBER is provided by Jenkins, if we are in a local environment username will used instead
env.BUILD_NUMBER = ${user.name}_${time.stamp}
# build.number can be overwritten locally if needed
build.number = ${env.BUILD_NUMBER}