Uh oh!
There was an error while loading. Please reload this page.
forked from sebastianbergmann/php-code-coverage
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
Latest commit
26 lines (22 loc) · 894 Bytes
/
Copy pathbuild.xml
File metadata and controls
26 lines (22 loc) · 894 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
<?xml version="1.0" encoding="UTF-8"?>
<projectname="php-code-coverage"default="setup">
<targetname="setup"depends="clean,install-dependencies"/>
<targetname="clean"description="Cleanup build artifacts">
<deletedir="${basedir}/vendor"/>
<deletefile="${basedir}/composer.lock"/>
</target>
<targetname="install-dependencies"depends="clean"description="Install dependencies with Composer">
<execexecutable="${basedir}/tools/composer"taskname="composer">
<argvalue="update"/>
<argvalue="--no-interaction"/>
<argvalue="--no-progress"/>
<argvalue="--no-ansi"/>
</exec>
</target>
<targetname="update-tools">
<execexecutable="phive"taskname="phive">
<argvalue="--no-progress"/>
<argvalue="update"/>
</exec>
</target>
</project>