podcast-feed-parser/phploc.xml
2021-08-12 16:19:26 +03:00

11 lines
382 B
XML

<target name="phploc" unless="phploc.done">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests" />
<arg value="--log-csv" />
<arg path="${basedir}/build/logs/phploc.csv" />
<arg value="--log-xml" />
<arg path="${basedir}/build/logs/phploc.xml" />
<arg path="....." />
</exec>
<property name="phploc.done" value="true"/>
</target>