forked from phpmd/phpmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
85 lines (69 loc) · 2.69 KB
/
build.xml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<project name="PHP_PMD" basedir=".">
<!--
Include local project properties.
-->
<property file="build.properties" />
<!--
Import common build targets
-->
<import file="${basedir}/setup/src/main/xml/base.xml" />
<!--
Hook that will be called after we have copied the project's library
directory.
Parameters:
output.dir Output directory for the temporary build tree.
library.dir The library directory in the temporary build tree.
-->
<target name="~copy-library-dir-after">
<delete includeemptydirs="true">
<fileset dir="${library.dir}">
<exclude name="pdepend/src/main/**" />
</fileset>
</delete>
</target>
<!--
Hook method for copying files for the project's xyz archive format.
Parameters:
output.dir Output directory for the temporary build tree.
-->
<target name="do-copy-files-for-xyz-archive">
<copy todir="${output.dir}/resources/rulesets">
<fileset dir="${commons.srcdir.resource}/rulesets" />
</copy>
</target>
<!--
We use the phar archive after hook to validate that a newly created
phar archive works as expected.
Parameters:
${-package:phar:filename} Name of the created phar file.
-->
<target name="-phpmd:package:phar:after~hooked" extensionOf="-package:phar:after~hook">
<echo message="Executing:" level="verbose" />
<echo message=" ${-package:phar:filename} PHP/PMD/Rule text ${phpmd.rulesets}" level="verbose" />
<exec dir="${commons.srcdir.php}"
executable="${-package:phar:filename}"
failonerror="true">
<arg value="PHP/PMD/Rule" />
<arg value="text" />
<arg value="${phpmd.rulesets}" />
</exec>
</target>
<!--
Executes the newly created and installed PEAR version of PHPMD.
-->
<target name="-phpmd:package:pear:after~hooked" extensionOf="-package:pear:after~hook">
<echo message="Executing:" level="verbose" />
<echo message=" phpmd PHP/PMD/Rule text ${phpmd.rulesets}" level="verbose" />
<exec dir="${commons.srcdir.php}"
executable="${commons.executable.php}"
failonerror="true">
<arg value="-d" />
<arg value="include_path=${common-pear-root-dir}" />
<arg value="${common-pear-bin-dir}/phpmd" />
<arg value="PHP/PMD/Rule" />
<arg value="text" />
<arg value="${phpmd.rulesets}" />
</exec>
</target>
</project>