-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (23 loc) · 970 Bytes
/
build.xml
File metadata and controls
28 lines (23 loc) · 970 Bytes
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
<?xml version="1.0"?>
<!--
This is an example ant build file to be used in combination with composer.
-->
<!--<project name="Example" default="test">
<target name="phpunit">
<exec dir="${basedir}" executable="vendor/bin/phpunit" failonerror="true"/>
</target>
<target name="phpcs">
<exec dir="${basedir}" executable="vendor/bin/phpcs" failonerror="true">
<arg line="--standard=${basedir}/vendor/bit3/php-coding-standard/phpcs/Bit3/ruleset.xml ${basedir}/src"/>
</exec>
</target>
<target name="phpmd">
<exec dir="${basedir}" executable="vendor/bin/phpmd" failonerror="true">
<arg line="${basedir}/src text ${basedir}/vendor/bit3/php-coding-standard/phpmd/ruleset.xml"/>
</exec>
</target>
<target name="test" depends="phpunit,phpcs,phpmd"/>
</project>-->
<project name="avisota-core" default="build">
<import file="vendor/phpcq/phpcq/phpcq.main.xml"/>
</project>