-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
32 lines (29 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="XWiki Installer" default="build">
<target name="build">
<pharpackage
destfile="xwiki.phar"
basedir="src">
<fileset dir="src">
<include name="**/**"/>
<exclude name="composer.json" />
<exclude name="composer.phar" />
<exclude name="composer.lock" />
</fileset>
<metadata>
<element name="version" value="1.0"/>
<element name="authors">
<element name="Alexandru Chelariu"/>
</element>
</metadata>
</pharpackage>
</target>
<target name="clean">
<delete file="xwiki.phar" />
</target>
<target name="phpunit" description="Run unit tests with PHPUnit">
<phpunit haltonfailure="true" haltonerror="true" configuration="phpunit.xml">
<formatter todir="reports" type="xml"/>
</phpunit>
</target>
</project>