|
Revision 2494, 0.6 kB
(checked in by bensch, 8 months ago)
|
|
added own PHPMDTask until it will be provided by phing
changed phpmd target to use PHPMDTask
|
| Line | |
|---|
| 1 | stubbles.base.dir=${project.basedir} |
|---|
| 2 | stubbles.report.dir=${stubbles.base.dir}/docs/reports |
|---|
| 3 | |
|---|
| 4 | pkg.dir=${stubbles.base.dir}/src/main/php/net/stubbles |
|---|
| 5 | pkg.name=stubbles-${version} |
|---|
| 6 | |
|---|
| 7 | build.base.dir=${stubbles.base.dir}/build |
|---|
| 8 | build.src.dir=${build.base.dir}/${pkg.name} |
|---|
| 9 | |
|---|
| 10 | examples.base.dir=examples |
|---|
| 11 | |
|---|
| 12 | phpcpd.report.file=${stubbles.report.dir}/cpd.xml |
|---|
| 13 | |
|---|
| 14 | phpmd.report.file=${stubbles.report.dir}/pmd.xml |
|---|
| 15 | phpmd.report.format=xml |
|---|
| 16 | phpmd.report.rulesets=codesize,unusedcode |
|---|
| 17 | |
|---|
| 18 | check-style.report.file=${stubbles.report.dir}/checkstyle.xml |
|---|
| 19 | check-style.path=main |
|---|
| 20 | check-style.namespace= |
|---|
| 21 | |
|---|
| 22 | phpunit.test.groups= |
|---|
| 23 | phpunit.test.excludeGroups= |
|---|