Added an exclude for Test classes beginning with 'Abstract'

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137052 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2002-09-21 04:16:37 +00:00
parent 32c6231679
commit 1abb2a5a3a
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<extend>../project.xml</extend>
<id>commons-lang</id>
<name>Lang</name>
<currentVersion>1.0-dev</currentVersion>
<currentVersion>1.0</currentVersion>
<inceptionYear>2001</inceptionYear>
<description>
@ -88,6 +88,9 @@
<include>**/*Test.java</include>
<include>**/*TestCase.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
</unitTest>
</build>