tasks/build.xml

17 lines
404 B
XML
Raw Normal View History

2014-08-08 07:11:51 +00:00
<project name="owncloud-tasks" basedir="." default="test">
<property file="build.properties"/>
<!-- test - Tests if the code syntax is correct and executes phpunit tests -->
<target name="test">
<apply executable="php" failonerror="true">
<arg value="-l" />
<fileset dir=".">
<include name="**/*.php" />
<exclude name="vendor/**/*" />
</fileset>
</apply>
</target>
</project>