summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-08-26 03:52:58 -0700
committerSom Snytt <som.snytt@gmail.com>2013-09-02 18:59:15 -0700
commitc88e8be97777bd7bf1c8392a83f17e1583de2ffd (patch)
treec9a78a3bcb461255c621504b7a43e26969ffa671 /build.xml
parent2fc528e0887b46a8dea403c1f8620ca8967c4b42 (diff)
downloadscala-c88e8be97777bd7bf1c8392a83f17e1583de2ffd.tar.gz
scala-c88e8be97777bd7bf1c8392a83f17e1583de2ffd.tar.bz2
scala-c88e8be97777bd7bf1c8392a83f17e1583de2ffd.zip
Target junit.clean to clean junit artifacts
And all.clean will also junit.clean.
Diffstat (limited to 'build.xml')
-rwxr-xr-xbuild.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index c65a3531ee..4a2456eebf 100755
--- a/build.xml
+++ b/build.xml
@@ -845,7 +845,11 @@ TODO:
<target name="docs.clean"> <clean build="docs"/> <delete dir="${build.dir}/manmaker" includeemptydirs="yes" quiet="yes" failonerror="no"/> </target>
<target name="dist.clean"> <delete dir="${dists.dir}" includeemptydirs="yes" quiet="yes" failonerror="no"/> </target>
- <target name="all.clean" depends="locker.clean, docs.clean"> <clean build="sbt"/> <clean build="osgi"/> </target>
+ <target name="junit.clean"> <clean build="junit"/> </target>
+
+ <target name="all.clean" depends="locker.clean, docs.clean, junit.clean">
+ <clean build="sbt"/> <clean build="osgi"/>
+ </target>
<!-- Used by the scala-installer script -->
<target name="allallclean" depends="all.clean, dist.clean"/>