File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<project name =" phpunit" default =" setup" >
3
- <target name =" setup" depends =" install-dependencies" />
3
+ <target name =" setup" depends =" clean-build-artifacts, install-dependencies" />
4
4
5
- <target name =" clean" description =" Cleanup build artifacts" >
5
+ <target name =" clean" description =" Cleanup build artifacts and vendor directory" depends =" clean-build-artifacts,clean-vendor" >
6
+ </target >
7
+
8
+ <target name =" clean-build-artifacts" description =" Cleanup build artifacts" >
6
9
<delete dir =" ${ basedir } /build/artifacts" />
7
10
<delete dir =" ${ basedir } /build/tmp" />
11
+ </target >
12
+
13
+ <target name =" clean-vendor" description =" Cleanup vendor directory" >
8
14
<delete dir =" ${ basedir } /vendor" />
9
15
</target >
10
16
You can’t perform that action at this time.
0 commit comments